All Questions
1,333 questions
0
votes
0
answers
16
views
Web automation with Java SSO login and Selenium
I'm automating a website, but this website takes the session of the logged-in user via SSO. If I'm already logged in to the email and I access the page, it automatically takes me to the dashboard. ...
0
votes
0
answers
128
views
Selenium Download Not Working in Java + Spring Boot Project (Chrome 135, Selenium 4.31.0)
I'm building a Java 21 + Spring Boot 3 automation project where I use Selenium to automate Chrome. The Chrome browser opens correctly via ChromeDriver, everything was working a month ago, but now file ...
1
vote
2
answers
60
views
How to access azure storage blob container having managed identity assigned from selenium automation code in local run and github actions pipeline
We have some selenium java automation test scripts which access azure blob storage. Earlier with our automation scripts we used to access the storage containers via access key and then download the ...
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
63
views
How to verify that the File Explorer is opened?
Im learning Java Automation using Selenium.
Im currently working on a test that checks simple file upload and verifies that the file was Indeed uploaded
Heres the test:
@Test
public void ...
0
votes
0
answers
51
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 ...
0
votes
0
answers
21
views
how to user multiple data value as a table in feature file in BBD framwork
how to user multiple data value as a table in feature file in BBD framework.
Then User enters all mandatory values
|Campaign Name|Campaign Type|Campaign Status|Fund Type|
| DemoVPATest | 401k | ...
-2
votes
1
answer
36
views
How to interlinked child automation projects to create one single parent project to run e2e test case
We are having 3 projects, let's call it A, B and C
All the 3 projects having different teams working on creating automated test cases. But these 3 projects are combined to create one project
I need to ...
1
vote
1
answer
62
views
How to Select an Area in Mapbox Using Selenium with Java?
I am working on automating the selection of an area on a Mapbox map using Selenium with Java. I’ve tried multiple approaches, including using the Action class and JavaScript, but none of them have ...
0
votes
2
answers
52
views
How to select the XPath of a drop-down option when the right-click function is disabled on that drop-down
I am unable to select an option from the drop-down menu. The right-click functionality is disabled on the drop-down, and whenever any button is clicked, the drop-down closes.
To work around this, I ...
0
votes
0
answers
44
views
Handling File Upload Button Relocation in Selenium Java During Automation Execution
Our web application faces an issue during automation testing where the File Upload button sometimes changes its location on the page.
By default, the button is supposed to be centered, but during some ...
0
votes
0
answers
24
views
waiting for visibility of element located by By.id: btnNew (tried for 35 second(s) with 500 milliseconds interval)
public void navigateToAssets() {
WebElement clickOnAssets = wait.until(ExpectedConditions.presenceOfElementLocated(By.xpath("//li//a//span[contains(text(),'Assets')]")));
...
0
votes
0
answers
108
views
How to get rid of StaleElementReferenceException and NoSuchElement exception while automating amazon website using selenium Java
I was practicing Selenium using the Amazon website and frequently encountered StaleElementReferenceException and NoSuchElementException errors. Here's the automation process I followed:
Open the ...
1
vote
0
answers
70
views
Trouble Accessing AG Grid Data with Selenium Due to DOM Virtualization
I'm facing an issue while trying to automate a table built with AG Grid using Selenium. The data I'm attempting to access isn't loading in the DOM due to AG Grid's DOM virtualization feature. As a ...
-2
votes
1
answer
64
views
Azure Repo Setup for Nexus Repo
We have our own company framework for testing and all jar are stored in nexus repo.
Whenever running my automation framework,all required jars are getting downloaded from nexus repo via pom dependancy....