All Questions
759 questions
1
vote
1
answer
182
views
Problem using python with selenium and getting error: net::ERR_HTTP2_PROTOCOL_ERROR
I had a MacBook and I was running a code in Python. I never had any problems with its execution.
Last month, I bought a new MacBook "MacBook Air (M3)" and ran the same code.
On the new ...
0
votes
0
answers
78
views
How can i run selenium on cloud server properly
I'm using selenium on streamlit cloud server and for that i have issues related to chrome, chrome driver, their versioning. There are other threads about this issue but none is solving my problem.
I'm ...
0
votes
1
answer
169
views
How to disable image/video download and How to make CSS disabled in selenium WebDriver of JAVA
I am using Chrome WebDriver latest version of now (Version 129.0.6668.59 (Official Build) (64-bit)).
Chrome Driver version 129.0.6668.58
I want to get a title or head of any URL (Youtube, Instagram, ...
0
votes
0
answers
279
views
Selenium Not Working! selenium.common.exceptions.SessionNotCreatedException: Message: session not created: Chrome failed to start: exited normally
I am learning python and tring to use selenium login chrome account. Here is my option code:
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common....
0
votes
1
answer
1k
views
How to setup Webdriver manager to use chromedriver in a MacOS app compiled with PyInstaller?
In my python script I am currently using webdriver_manager (text) to install the chrome webdriver. This webdriver is used to create a Selenium driver to navigate websites and collect HTML data. This ...
0
votes
0
answers
50
views
How do I click change the country to a new one from the COUNTRY/REGION section using Selenium Webdriver
I am building a web scrapper but I want to be able to switch the country to another using Selenium.
For instance I want to be able to click on the country button and select a new country or region?
...
0
votes
0
answers
83
views
WebDriverError: unknown error: failed to create Chrome process even when chromedriver, google chrome, selenium are installed
My package.json looks like this:
{
"name": "hello",
"version": "1.0.0",
"main": "main.js",
"devDependencies": {
...
0
votes
0
answers
421
views
Chromedriver Giving Permission and Timeout Error
I’ve downloaded the latest version of chromedriver for Chrome version 125.0.6422.61 (64-bit). I have the file in my directory and the path (C:\Users\USER PC\Documents\Flatiron\Web_Scraping) in the ...
1
vote
1
answer
592
views
Using Selenium, that can use browser cookies to stay logged in between sessions
I want to buy a product using Selenium, but every time it opens the browser and I register the purchase, I need to log in to the store site again to finalize the purchase. I don't want it to be like ...
1
vote
1
answer
129
views
Why doesn't chromedriver open the website?
I currently have a problem: I can't open the URL of any page in Chrome with simple code.
The Chrome window appears asking who was currently using Chrome and you can select the profiles there, but it ...
0
votes
1
answer
43
views
Trying to make a simple selenium starter app with Java, but keep getting element not interactable errors on a search button
So, i'm trying to learn Selenium with Java, making a simple method to open google, and do a basic search. However, I get an error org.openqa.selenium.ElementNotInteractableException: element not ...
1
vote
0
answers
190
views
Selenium ChromeDriver on azure
I just used Selenium ChromeDriver in my project and it was working fine on local but when I tried to deploy my app on azure it gets this
ERROR: OpenQA.Selenium.WebDriverException: unknown error: ...
0
votes
1
answer
155
views
Where can I find a list of all experimental_option 'prefs' keys for Edge as 'download.default_directory' and 'download.prompt_for_download'?
I'm using Python with Selenium to automate Edge.
Where can I find a list of all experimental_option 'prefs' keys for Edge as 'download.default_directory' and 'download.prompt_for_download'?
In other ...
0
votes
1
answer
50
views
Trying to fill textbox via webdriver
Trying to send text to a textbox via webdriver,
driver.find_element(By.ID, 'input-description-2').send_keys(description)
doesnt work cause it said it can't find the id ,
i need to send the (...
0
votes
0
answers
216
views
Chrome Webdriver automatically closes after the code is run in VBA?
I am currently learning Selenium and when i run the code, Chrome Appears and after execution it automatically closes..How to avoid it ?
Also is it necessary to put Application.wait in Chrome or the ...