All Questions
Tagged with automated-tests selenium-webdriver
3,020 questions
0
votes
1
answer
61
views
Avoid browser's download file dialog box in selenium/C# automation
I am using selenium and c# to test the download file from the browser application. when I click on download button then file download option is opening on the browser. So how can I resolve this. Also ...
0
votes
2
answers
54
views
How to click or select a particular radio button out of 2 or more radio buttons by using Selenium C#?
The following login page link: https://rahulshettyacademy.com/loginpagePractise/ has 2 radio buttons: Admin and User
I have right-clicked on User radio button and then I have selected Inspect to have ...
1
vote
1
answer
87
views
Robot Framework Selenium - Cannot reliably click/scroll in Flutter web canvas elements
I'm internship QA testing on Flutter web application with Robot Framework and Selenium Library. My task is to perform end-to-end (E2E) testing on a Flutter web app that heavily uses canvas structure. ...
0
votes
1
answer
212
views
System.InvalidOperationException : session not created: This version of ChromeDriver only supports Chrome version 135
I know there are so many threads regarding this but my issue is a bit different.
My Browswer version is 134.0.....
My ChromeDriver Version is 134.0...
and Chrome Version 135 is not available yet for ...
0
votes
0
answers
103
views
How to read content from aspx page of type document which is rendering as pdf in chrome viewer using selenium java?
I have some code where clicking on a button will open the aspx page in a new tab. I'm able to download a valid pdf file by clicking on download icon in chrome viewer. The URL is dynamic and its query ...
0
votes
0
answers
21
views
How to test a form in an ASP.NET MVC web application?
I have found the product name ID and checked that it's neither hidden nor missing. However, when I call the function to retrieve the ID, it says the ID cannot be found. Are there any ways to fix this ...
0
votes
0
answers
71
views
Robot Framework Fails to Open Browser on Host Machine When Running from Podman Container
How can I allow the Robot Framework test to open a browser on my host machine from within the Podman container?
I have tried doing this but the robot suite fails to open the browser on my host machine....
0
votes
1
answer
58
views
Unable capture the "success" state of the elements after form submission
I'm trying to learn Java and using Selenium for my AQA tests.
Here's a dummy website that offers different kind of forms / pages / buttons to train:
https://play1.automationcamp.ir/forms.html?
I'm ...
0
votes
0
answers
31
views
Is there any way to open extension by link using selenium and avoid chrome blocking?
Tests require opening the extension by link.
Locally I can easily run all my python tests without any problems. When it comes to running it in docker-compose everything works except the moment when I ...
0
votes
0
answers
86
views
BrowserStack SDK: PKIX Path Building Failed Error on Office Machine but Works on Personal Machine
I have downloaded the sample project provided by BrowserStack that integrates with the BrowserStack SDK. The setup is complete, and I am executing tests using the command:
mvn clean test
The ...
0
votes
1
answer
68
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
1
answer
43
views
Selenium does not always work fine when entering text [closed]
I'm experiencing an issue with Robot Framework Selenium where sometimes, when I try to input text into a text field, it doesn't fill in the complete word. For example, [email protected] might ...
-4
votes
1
answer
285
views
Selenium, the return value of driver.getCurrentUrl(), for pdfs, get things like 'chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai/index.html'
In selenium test automation, sometimes, when clicking on 'external' pdf links, I see the pdf load in a new window, and it seems to have a reasonable/readable URL in the address bar. However, when ...
0
votes
1
answer
92
views
What is the Page Object Model syntax if you want to find by ios Class chain or IOS predicate using .net package
Here is sample of my current page object
[FindsByAndroidUIAutomator(XPath = "//android.widget.ImageView")]
[FindsByIOSUIAutomation(Accessibility = "ic_login_logo")]
private ...
0
votes
0
answers
53
views
Explicit wait only working when implicit wait is present
I have an automation project in Java that uses Cucumber, JUnit 5 and Selenium. I'm automating some UI test cases for a web application. Recently I was refactoring my code and getting rid of a lot of ...