All Questions
Tagged with selenium or selenium-webdriver
157,658 questions
0
votes
0
answers
36
views
JS snippet works in browser console but not in selenium
I am currently trying to automate exporting discord favorite gifs
I have this snippet:
window.FrecencyUserSettings ??= webpackChunkdiscord_app.push([[Symbol()],,e=>Object.values(e.c).values().map(m=...
-1
votes
1
answer
42
views
org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code 500 using WebDriverManager for chromedriver 145.0.7632.26 [closed]
I'm trying to run chromedriver and I am using Boni Garcia's WebDriverManager (v6.3.3 - latest version)for version control.
The app is here: https://github.com/Vanilla2016/accountBatch
I am running the ...
0
votes
4
answers
90
views
How do I use selenium to extract data from a specific webpage? [closed]
I am using selenium to control my browser and extract data from this webpage:
https://www.b3.com.br/pt_br/b3/sustentabilidade/produtos-e-servicos-esg/credito-de-descarbonizacao-cbio/cbio-consultas/
I ...
Advice
0
votes
1
replies
30
views
Is it possible to bypass Cloudflare Turnstile from a datacenter IP using Selenium or curl_cffi in 2026? Local works, Docker/Hosted always fails
I’m building a text-to-speech web application that scrapes chapters from novel sites (e.g., novelfire.net) and converts them into audiobooks.
Everything works perfectly on my local Windows machine, ...
-7
votes
0
answers
80
views
Python Web scrapping code deployed as a EXE file? [closed]
I need help in understanding if this code is malicious. Or if it is generic? Or can it download a virus? I deployed this as an exe file.
This is a code I wrote while working. I got feedback that this ...
-1
votes
0
answers
76
views
Selenium login flow for Exa.ai fails with “The login page was accessed incorrectly” after submitting verification code
import os
import time
import requests
import random
import string
import re
from datetime import datetime
from docx import Document
from selenium import webdriver
from selenium.webdriver.chrome....
-3
votes
1
answer
58
views
Install selenium TS in VSCode
I'm trying to install selenium type script in VSCode, but i'm not sure what commands should i use.
I read online that i need to use the following commands:
npm init -y
npm install selenium-...
0
votes
1
answer
96
views
How to determine if a Selenium WebDriver is running in headless mode
We have code that takes a reference to a WebDriver without knowing how it was constructed.
I have read How to detect if Chrome browser is headless in selenium? There are a couple of answers that ...
0
votes
0
answers
64
views
Is there a way to get selenium to connect to an edge browser for old IE sites?
I have my old python script for some work intranet sites we still have not upgraded that run in IE compatibility within edge. I changed it a bit to update since IE is no longer available after os ...
0
votes
2
answers
51
views
Selenium opening browser very slowly on Mac
Even with this simple code, Selenium takes about 5-10 seconds to open the browser. I used another machine (window) to run the same code and it takes less than 1 second to open it.
I've tried changing ...
0
votes
0
answers
60
views
Why am I getting a stack trace with no exception in the message section when I run my selenium crawler
I hosted my selenium crawler API on render it takes data from one site and puts it in another site. When I test the app on the FastAPI interactive docs I get a stack trace with no exception so I can't ...
2
votes
1
answer
97
views
How to scroll down and click on a link after log in using Selenium
I'm trying to get into this website and retrieve fund status data https://fundfinder.panfoundation.org
I need to log into the website (this is an open website, anybody can create username and pwd to ...
4
votes
2
answers
90
views
How to specify the operating system when downloading ChromeDriver using ChromeDriverManager?
Using ChromeDriverManager and the following code block:
if platform.system() == "Windows":
driver_path = ChromeDriverManager(os_system_manager=OperationSystemManager(os_type="win64&...
3
votes
1
answer
129
views
How to completely block macOS Passkey / iCloud Keychain popup in Chrome during Selenium automation?
I’m running Selenium automation tests on macOS using Google Chrome, and I keep getting the OS-level popup:
“Use a saved passkey from iCloud Keychain”
This popup blocks the UI and causes my tests to ...
1
vote
1
answer
129
views
Selenium ChromeDriver randomly crashes with 'session deleted because of page crash' error even in headless mode
I'm running selenium tests on ubuntu with chromedriver 120 and chrome 120 but randomly getting "chrome not reachable" or "session deleted because of page crash" errors. happens ...