Skip to content

Instantly share code, notes, and snippets.

View samfreitasxs's full-sized avatar
🍎

Samuel Freitas samfreitasxs

🍎
View GitHub Profile
#!/bin/bash
blueutil -p 0
sleep 1
blueutil -p 1
@Dema
Dema / commands.js
Created October 21, 2019 20:08
Cypress recaptcha command
Cypress.Commands.add("clickRecaptcha", () => {
cy.window().then(win => {
win.document
.querySelector("iframe[src*='recaptcha']")
.contentDocument.getElementById("recaptcha-token")
.click();
});
});