Skip to content

Instantly share code, notes, and snippets.

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