Questions tagged [selenium-stealth]

A python package selenium-stealth to prevent detection. This programme is trying to make python selenium more stealthy.

As of now selenium-stealth only support Selenium Chrome.

After using selenium-stealth you can prevent almost all selenium detections. There is a lot of guides on stackoverflow on How to prevent selenium detection but I can not find a single python package for it so I am just creating one after all we can't let the cats win. It can be seen as a re-implementation of JavaScript puppeteer-extra-plugin-stealth

9 questions
10
votes
1 answer

How to automate login to a site which is detecting my attempts to login using selenium-stealth

So, I'm trying to write a script to login on https://us.etrade.com/e/t/user/login I am using Selenium for this but it somehow detects selenium when it starts and results in a message that says that the servers are crowded and when it happens, I…
2
votes
0 answers

Why cant I go around the Recaptcha the second time?

I am currently writing a program to log in to investors.com. I am using selenium to write my program. Initially, whenever I click on the "Sign In" button. The website would take me to a page where I had to click and hold a button to pass a Recaptcha…
0
votes
0 answers

Running Selenium Grid inside docker container using selenium-stealth

We are trying to run multiple instances of Selenium in Selenium Grid using the selenium-stealth (https://github.com/diprajpatra/selenium-stealth). But we are facing some errors which doesn't allow us to continue. We have been able to make it work…
0
votes
1 answer

How can I make Selenium Chromedriver anti-detectable settings work on tabs opened by webdriver?

In Selenium Chromedriver added proxy, fake user agent, disabled Webrtc by extension, spoofed Webgl with selenium-stealth, spoofed time zone and language as follows: driver.execute_cdp_cmd('Emulation.setTimezoneOverride',…
0
votes
1 answer

Selenium Stealth settings not getting propogated to the new tabs

I'm trying to automate a process using selenium. Everything works perfect but the site has anti-bot methods in place which blocks my selenium script. To solve this I came across a python module called selenium-stealth. This does some stuff that…
0
votes
1 answer

Methods to webscrape Prizepicks for all NBA props

I have been looking EVERYWHERE for some form of help on any method on python to web scrape all nba props from app.prizepicks.com. I came down to 2 potential methods: API with pandas and selenium. I believe prizepicks recently shut down their api…
0
votes
0 answers

Tiktok login with selenium

I try to login to tiktok website (https://www.tiktok.com/login/phone-or-email/email) with selenium but it returns an error everytime i try to access the url driver.get('https://www.tiktok.com/login/phone-or-email/email') This is the error : raise…
Ahmed
  • 1
  • 3
0
votes
2 answers

Selenium stealth not working, website still sending 403 error

The website redirect me to a captcha page (which is fine) but doesn't let me complete the captcha, sending a 403 response which is blocking the load of the captcha widget so I cannot send it to 2captcha workers. Tried VPN, tried switching network to…
0
votes
1 answer

Python Selenium Stealth scrapy not working

I'm trying to use selenium stealth module to scrap an api url in ubuntu server 18.04.4 LTS. I have 2 servers , one for staging and one for production. I deployed google-chrome-stable and chromemdriver in staging server and installed selenium-stealth…