Answer the question
In order to leave comments, you need to log in
Is it possible to bypass cloudflare protection on selenium?
There is a site that was parsed using puppeteer, but today for some reason it stopped working and instead of loading the site after a 5 second check, the 5 second check started again.
I tried to visit the site on selenium, the same problem. Can this be fixed somehow?
const { Builder, By, Key, until, WebDriver } = require('selenium-webdriver');
const chrome = require('selenium-webdriver/chrome')
const options = new chrome.Options()
options.addArguments('--disable-dev-shm-usage')
options.addArguments('--no-sandbox')
options.addArguments("--disable-extensions")
options.addArguments("--disable-gpu")
;(async() => {
let driver = await new Builder().forBrowser('chrome').build();
try {
await driver.get('http://www.google.com/');
} finally {
// await driver.quit();
}
})();
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question