Skip to content

Instantly share code, notes, and snippets.

@adsguilherme
Forked from Dema/commands.js
Created December 14, 2020 14:31
Show Gist options
  • Save adsguilherme/eb71c797b4dbf197d6516909c7796bec to your computer and use it in GitHub Desktop.
Save adsguilherme/eb71c797b4dbf197d6516909c7796bec to your computer and use it in GitHub Desktop.
Cypress recaptcha command
Cypress.Commands.add("clickRecaptcha", () => {
cy.window().then(win => {
win.document
.querySelector("iframe[src*='recaptcha']")
.contentDocument.getElementById("recaptcha-token")
.click();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment