This file contains 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
Kornerupitty | |
15387961431121 |
This file contains 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
// ==UserScript== | |
// @name rezka | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @include https://rezka* | |
// @grant none | |
// ==/UserScript== | |
function removeIframe(){ |
This file contains 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
(node:13395) UnhandledPromiseRejectionWarning: Error: Unable to create session from { | |
"desiredCapabilities": { | |
"rotatable": true, | |
"goog:chromeOptions": { | |
"perfLoggingPrefs": { | |
"traceCategories": "performance" | |
} | |
}, | |
"locationContextEnabled": true, | |
"loggingPrefs": { |
This file contains 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
var webdriverio = require('webdriverio'); | |
(async function () { | |
var client = webdriverio.remote(getOptions(true)); | |
await client.init(); | |
await client.url('https://duckduckgo.com/'); | |
})(); | |
function getOptions() { | |
var options = { | |
desiredCapabilities: { |