Skip to content

Instantly share code, notes, and snippets.

@Niweera
Created February 26, 2022 18:06
Show Gist options
  • Save Niweera/871ad35ef6e0c9ad288f7faedf319d37 to your computer and use it in GitHub Desktop.
Save Niweera/871ad35ef6e0c9ad288f7faedf319d37 to your computer and use it in GitHub Desktop.
Add name to the NFT
const addName = async (page, name) => {
await page.focus("#name");
await page.keyboard.type(name, { delay: 25 });
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment