157,590 questions
-1
votes
0
answers
69
views
Did Chrome 146 make the Profile Picker mandatory? ChromeDriver stuck on "Welcome to Chrome profiles" (invalid session id)
I am running automated UI tests using Selenium WebDriver (C#), and it seems a recent Chrome update has broken standard initialization.
When the test starts, Chrome launches but gets permanently stuck ...
Advice
0
votes
2
replies
39
views
signup / cookie Pop-ups - how to deal with them
I just completed a Test automation course with Selenium Webdriver and java and now I am trying to practice what I have learnt using www.whitestuff.com
My aim is to find the Web element on the main ...
-1
votes
0
answers
53
views
Selenium attach to existing browser using ruby - script froze
I'm trying to attach Selenium to existing browser. Based on this tutorial, now I've got:
test.bat
cd /d "%~dp0"
ruby test.rb %1 %2 %3 %input%
pause
test.rb
require 'selenium-webdriver'
...
0
votes
1
answer
68
views
shadow_root - find_elements vs find_element and nth-child() [closed]
Works:
els = shadow.shadow_root.find_elements(By.CSS_SELECTOR, "span.fifty-radio__text")
log.info(els[4].get_attribute('outerHTML'))
:
<span _ngcontent-ng-c2959232361="" class=&...
2
votes
2
answers
52
views
Python EXEcutable file (made with PyInstaller) doesn't see Selenium library
I have used few latest versions of Pyinstaller and always get error like this (below).
Application works good in IDE, PyCharm, but EXE file under Windows doesn't run and throw error:
Traceback (most ...
0
votes
0
answers
79
views
Spurious errors/warnings from Pylint and Pylance
Given the following MRE:
from selenium.webdriver import Chrome
with Chrome() as driver:
pass
when developing in VS Code I see Chrome() underlined as if there's an issue. Pylance says:
Object of ...
Advice
0
votes
1
replies
63
views
Selenium stuck on landing page when scraping images from given.lv
I’m trying to scrape jewellery product images from:
https://given.lv/
Using Python + Selenium, my plan is to:
Navigate collection pages
Extract product links
Visit product pages and download images
...
0
votes
2
answers
91
views
Python Selenium with Firefox getting a button click doesn't seem to work
I am running Ubuntu 22.04, with Firefox 148, and Selenium, with the geckodriver version 36.0. I have written a small HTML file and a Python script to highlight the issue. The HTML is as follows:
<...
Tooling
0
votes
4
replies
105
views
Automating repetitive tasks with Ruby and Selenium WebDriver
I followed the advice from this question and I started to experimenting with Selenium, but I feel like it has to many limitations. Could you recommend something more suitable?
A simple program that ...
Advice
0
votes
2
replies
87
views
Selenium and c#
What is the solution to the following error that occurs when scraping with Selenium and C#:
OpenQA.Selenium.WebDriverException
HResult=0x80131500
Message=Timed out waiting for driver service to ...
Tooling
0
votes
1
replies
93
views
Do teams still find UI automation with Selenium or Playwright difficult to maintain as projects scale?
Curious how teams handle UI automation as their applications grow.
Many teams start with Selenium or Playwright, but over time the test suite grows and maintenance becomes challenging when the UI ...
Advice
0
votes
1
replies
65
views
Unable to click 'Apply' and 'Interested' buttons on Nokri.com job pages; chatbot overlay not visible after clicking button
I am automating job applications on Naukri.com using Selenium WebDriver in Java.
My code successfully navigates to the job page and opens the job details, but I am unable to click on the 'Apply' or '...
0
votes
2
answers
70
views
Selenium StaleElementReferenceException while looping through paginated table and using stalenessOf() - Angular application
I am trying to check whether a value is present in a paginated table.
If the value is not found on the current page, I click the Next button and continue searching.
I am getting this exception:
org....
1
vote
0
answers
87
views
How can i fix this exception of ElementClickInterceptedException in selenium
I am currently learning test automation using Selenium with Java. While working on web element testing, I attempted to use the JavascriptExecutor within my test script to scroll the webpage to a ...
0
votes
0
answers
109
views
selenium/Edge driver fills up memory in golang application
We have a golang web application which is using msedgedriver.exe to convert HTML to PDF. For each user session we create a new Edge Webdriver and Quit when the session terminates.
Our problem is, that ...