14,959 questions
0
votes
0
answers
100
views
Issue with undetected-chromedriver: Browser crashes when navigating to a website
I am encountering an issue when using the undetected-chromedriver library in my script. The browser opens successfully, but when I try to navigate to a website, the browser crashes, and a white screen ...
2
votes
1
answer
422
views
Selenium chrome-standalone download file without popup
I'm trying to run Selenium in docker. Therefore I have the selenium/standalone-chrome together with node in my docker-compose:
# Inspired by https://www.testmo.com/guides/github-actions-selenium/
...
0
votes
1
answer
100
views
Python Selenium How to set the specific microphone device in different Chrome
I want to set the specific microphone device in different Chrome, e.g. Chrome A using "Microphone A", Chrome B using "Microphone B". I know the Firefox can doing this using
profile....
0
votes
1
answer
1k
views
How to send automated message in whatsapp desktop
I was looking to have some fun and was annoying my friend by spam tagging him in a group chat . Then it hit me , why could i not write a for loop to spam his name as many times as i want .
I went to ...
0
votes
2
answers
41
views
Selenium Clicking Button Element is not clickable at point Error
CoinPoker Leaderboard Page
I want to click yesterday button to copy yesterday's data, but receveing an error doing so
My goal is to be able to click both Yestarday button and parse data located below ...
0
votes
1
answer
157
views
Possible to set Request Headers in Selenium?
I'm trying to write a test against a site that authenticate's by checking some headers.
In other frameworks it's possible to add headers to the driver but I can't see anything like that in Selenium.
...
-2
votes
1
answer
421
views
Is it normal that Selenium gives me "NoSuchElementException" even if element.isdisplayed return me true
I am praticing Selenium following this tutorial working on this page. I am using the more recent version of Selenium (4.26), TestNG (7.10.2 and of Java JDK (Java 23) with IntellJ Community edition.
...
1
vote
1
answer
488
views
How can I correctly run a selenium standalone-chrome container with a different user than seluser?
I'm trying to work with python and selenium/standalone-chrome to create an automation to download a .xlsx file from my website.
I've configured both the python container and the selenium/standalone-...
0
votes
0
answers
63
views
How put bypass the local connection with the ChromeWebDriver if I haven't the IP but only an url?
I am learning test automation following a tutorial on the site TAU by applitools. I am using IntelliJ community edtion as IDE.
I have to practice with TestNG so I followed the instruction writing a ...
1
vote
1
answer
73
views
Trying to scrape the google map links inframed on dynamic web pages, successful in some of them but fail in others
I'm tring to get the time and location info on a website which presents public events called Timable, it uses Google Map to show the detailed locations, some of the event has only one location and I'...
3
votes
0
answers
574
views
Chromium "Sandbox cannot access executable" (Selenium) (chromium) (Python)
I've been developing a web scraper with python and when initially creating the webdriver.Chrome object with Selenium.py, I consistently get a "Sandbox cannot access executable" error which ...
1
vote
0
answers
205
views
How can I reuse a SeleniumBase driver instance across multiple scripts in UC (Undetected Chrome) mode?
I'm currently using SeleniumBase with UC mode to launch a web page. After starting a browser instance in one script, I would like to reuse that instance in another script within the same project. ...
0
votes
1
answer
122
views
Symfony/Panther - Cookies are disabled on chromium-driver in Docker
I'm trying to write E2E tests with Panther. My tests are dockerized. I load chromium-driver and the Panther library :
RUN apt-get update ;\
apt-get install -y default-mysql-client php8.2-mysql ...
0
votes
1
answer
271
views
selenium chromedriver error 0xc0000005 on windows 7
I have developed a windows form app with selenium on vs2019 and dotnet 4.6.1 the app works perfectly on windows 10 64-bit where I originally create the app and debug it. but I need it for win7 and it ...
1
vote
0
answers
30
views
TypeError: test_quantity_item_update() missing 1 required positional argument: 'driver'
I have this issue in my code using Selenium and Python
I receive this error:
Traceback (most recent call last):
File "C:\Program Files\JetBrains\PyCharm Community Edition 2024.2.1\plugins\...
0
votes
1
answer
133
views
Unable to take screenshot of simple webpage with Selenium and python
I am new to using Selenium.
I have to take a screenshot of a simple webpage but it shows the error below even though I set the height already.
selenium.common.exceptions.WebDriverException: Message: ...
1
vote
0
answers
55
views
Developing a Continuous Sequence Recorder Using Selenium and WebSocket
I want to create a sequence recorder application. My goal is to take a URL from the user on the client side and open it in a browser on the server side. The user interacts with the server-side browser ...
0
votes
1
answer
34
views
Finding element on website and insert value does not work
I am currently trying to set up a script which copies a value from Excel and inserts it into a specific field on a website. However, I am currently not able to so on a corporate website, on another ...
-2
votes
1
answer
70
views
Python selenium cannot find the button
'Untill login its fine all button works fine but then afte the login I am trying to click tis export button its not clicking/ as per my test its not finding it. Not juts the export button any other ...
1
vote
1
answer
62
views
Getting Index out of range error while trying to scrape product code from a website (Using Python & Selenium)
Issue Description:
I am trying to automate a process where I can visit a website and scrape product details of top 100 products on that page and put it in an excel file.
Code Explanation:
I have a ...
0
votes
1
answer
557
views
How can I find the dependencies for chromdriver of google-chrome-stable on ubuntu linux
I am using selenium chromedriver and for that I need to install the Chrome dependencies (in my dockerfile) for linux (ubuntu). I tried searching but I cannot find a definitive list - just a lot of ...
0
votes
1
answer
63
views
Page translate feature is not working as expected in Python using Selenium automation script
Issue Description:
I am trying to automate a process where I can visit a website, hover over the menu navigation bar and click on each navigation category options from tier 1 dropdown, visit that ...
0
votes
1
answer
49
views
Not able to launch URL in selenium
I have downloaded the latest version of chromedriver and updated the chrome with the same version.
Also added the selenium jar files.
Getting error : Exception in thread "main" java.lang....
0
votes
1
answer
180
views
How to gather >100k news article URLs for data analysis using selenium chromedriver and google?
I have to collect text data from internet news articles from approx 2017 to 2024 from around 5 websites. That's tens/hundreds of thousands of articles. I have a way of scraping some of those URLs ...
0
votes
0
answers
40
views
How to deal/handle websites dynamic, ever-changing text-fields/drop-downs etc... when trying to automate the process of applying for jobs
I'm trying to use Java and Selenium to automate the process of filling out online job applications, which obviously means I need to insert text into text fields like one's name, address, phone number ...