Last active
June 12, 2023 16:20
-
-
Save PsyGik/e942a70515e5c3548af6e82639b75f18 to your computer and use it in GitHub Desktop.
Testing Form auto-fills using bookmarklets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="module"> | |
import { faker } from 'https://cdn.skypack.dev/@faker-js/faker'; | |
// Caitlyn Kerluke | |
const randomName = faker.person.fullName(); | |
// [email protected] | |
const randomEmail = faker.internet.email(); | |
console.log(randomName,randomEmail) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment