All Questions
Tagged with testing selenium-webdriver
2,973 questions
0
votes
1
answer
3k
views
Please update to a Selenium version that supports CDP version 134
I have an issue running my Selenium tests on ChromeVersion 134.0.6998.45 (Build officiel) (x86_64) while using the latest Selenium version org.seleniumhq.selenium:selenium-java:4.29.0.
On my test ...
0
votes
2
answers
85
views
How to run parallel tests with Selenium Standalone?
I am developing a Java-based test automation project and using Selenium Standalone to run my tests. Currently, I can run tests on a single browser instance, but I want to execute parallel tests.
I ...
0
votes
1
answer
46
views
Selenium Fetching Data from a Child Tab to Parent Tab
In this program, I want to extract text from a list of WebElements in a child window, return to the parent window, and enter that text into a text field. The program works correctly for the first ...
0
votes
1
answer
50
views
I'm using Selenium C# to test Google.com, but sendKeys doesn't work because the cookies popup appears every time, and even after clicking 'Accept All'
I'm new to software testing.
As I start out, I am using Selenium with C# to test google.com, the element I'm to interact with is the search bar but after I run the code the browser keeps opening with ...
0
votes
2
answers
63
views
Browserstack Nunit testing - run locally
After 2 days of trying reaching out for somebody to shed some light on this.
My ideal setup for writing tests is that a test will be developed using local browser (which I can get to work).
Then have ...
0
votes
0
answers
40
views
Connection Time Out running tests on Selenium
I use Python 3.10, Pytest, Selenium, Geckodriver(Firefox) and X-dist for asynchronous tests. Not so long ago, I ran into a problem: when running tests, some of them pass and then the tests start ...
0
votes
1
answer
65
views
What's the point of using remote browser grid vs local browsers in web app testing with Testplane?
I am using testplane framework (https://testplane.io/) for running automated tests of my web app. The actions I automated are pretty simple for now, e.g. open a page, click a few buttons, then assert ...
0
votes
0
answers
17
views
How to pass a Selenium WebElement to Generic 'Action' Methods through Cucumber Steps?
I have created generic methods to perform common actions using Selenium such as 'click' and to find whether an element is present on a page or not. These methods are mapped to a Cucumber step and the ...
-2
votes
1
answer
398
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.
...
2
votes
0
answers
50
views
JavaScript page visibility event isn't being triggered in Python Selenium tests
My website has a feature that sends data when the page visibility changes to "hidden." It works fine during manual testing but doesn’t trigger in automated testing with Python Selenium. I've ...
0
votes
1
answer
42
views
Issue with C# Program: .json File content is rigged
I’m facing a specific issue with a C# test program that navigates a website and takes screenshots of various pages and dialogs. These screenshots are saved in a .zip file, and at the end of a test, a ...
0
votes
0
answers
29
views
when I run the appium test, I get an error that the address is invalid
I get this error when I run my test:
Error initializing AndroidDriver: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.
This error ...
0
votes
0
answers
41
views
Facing compilation error while Building project on Jenkins
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] /C:/ProgramData/Jenkins/.jenkins/workspace/flipkart-automation/src/main/java/com/flipkart/...
0
votes
1
answer
69
views
Elements are not displayed after page redirection in automated tests in WebdriverIO
I have flaky tests, with tests sometimes passing and failing. Main cause I found is the only time when redirected to that certain page the elements cannot be displayed, existed, clicked etc. Tried to ...
0
votes
2
answers
66
views
Unable to click on modal close button with data-bs-target in Selenium WebDriver
I'm working on an automated test using Selenium WebDriver for a web page that contains a module with several photos and multiple associated parameters. Each photo has a "Detail" button that ...