Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
160 views

I have been working with BDD Test automation since 3 years now that used Neodymium 4.1.5 version with Java 11. recently since 2 months I am facing issue with Chrome Headless mode execution where ...
Sailesh Botcha's user avatar
0 votes
0 answers
51 views

Is there a way to disable the WebAuthn-API in the ChromeDriver? I tried to add an extension, but this did not work. final ChromeOptions options = new ChromeOptions(); options.addArguments("--load-...
user871611's user avatar
  • 3,472
0 votes
1 answer
58 views

I want to instantly determine if an element is present in the page. I wrote this simple Selenium Java code. The driver is an instance of ChromeDriver. By by = By.id("non existent element"); ...
Dili's user avatar
  • 626
1 vote
1 answer
135 views

The BiDi introduced in Selenium 4 sounds interesting. But when I turn it on with options.setCapability("webSocketUrl", true); I have trouble with Alert, Model, and Prompt. The old way driver....
Lurin Do's user avatar
0 votes
0 answers
48 views

I'm using Selenium 4.26 with openJDK 11.0.2. I have a selenium grid with 10 machines each having chrome / firefox version 130 installed (which is in line with selenium 4.26 devtools support). Problem: ...
Arun's user avatar
  • 35
0 votes
1 answer
149 views

Getting below error if I try to run the test using testNG - [RemoteTestNG] failed to get TestNG version from class: java.lang.IllegalArgumentException: invalid version "[WORKING]": non-...
Shreyas Lembhe's user avatar
1 vote
0 answers
43 views

I'm new to software testing and below is the code for the automation testing. Although the automation testing steps are done in chrome correctly, the message is displayed as testing is failed. I run ...
El Castro's user avatar
0 votes
1 answer
26 views

OrderDetailPage I have a webpage where Order generated gets displayed in list. I have constraint for the Order details section which has the newly generated Order ID and verify for the Order date and ...
Saranya S's user avatar
0 votes
0 answers
361 views

Hi There I am getting "no such element: Unable to locate element error", it's been running successfully all of sudden I am seeing this issue nothing has changed from UI side same elements.I ...
Raj's user avatar
  • 23
0 votes
1 answer
65 views

I'm new to coding, and I am not able to understand the error message in Eclipse, Can you please tell me the steps to read an error message? enter code herejuin 30, 2024 6:28:23 P.M. org.openqa....
Kamilia Bouras's user avatar
0 votes
2 answers
150 views

import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.support.ui....
Kamilia Bouras's user avatar
1 vote
2 answers
138 views

import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.support.ui....
Kamilia Bouras's user avatar
0 votes
1 answer
470 views

import org.openqa.selenium.By; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; public class ...
Kamilia Bouras's user avatar
0 votes
0 answers
62 views

<div class="custom-control custom-checkbox" style="padding-left: 0px; margin-top: -4px !important;" xpath="1"> <input type="checkbox" autocomplete=&...
Naresh p's user avatar
0 votes
2 answers
660 views

How to disable chrome notification popups I have tried that below code but its not working ChromeOptions option = new ChromeOptions(); option.addArguments("--disable-notifications"); option....
deepika ravi's user avatar
0 votes
1 answer
311 views

Hello I'm trying to get this value from chrome console here but Selenium give me this error. [main] ERROR io.qameta.allure.util.NamingUtils - Could not find parameter color org.openqa.selenium....
Nguyễn Như Quỳnh's user avatar
0 votes
1 answer
421 views

So I have Selenium code and I defined the step in step-definition file as, in here I am returning the value of appId which we are fetching from chrome console and then we need to use it in our feature ...
user avatar
0 votes
1 answer
396 views

Apologies ahead of time, this is my first question here. After Google Chrome updated to v124 on April 16th, I could not run my XML file of 64 tests without freezing and crashing my computer. I have ...
wilyhawk's user avatar
0 votes
0 answers
43 views

enter image description hereDebugging in eclipse IDE showing class.class after apply breakpoint and run as Debug option, How to debug it properly? I tried applying a breakpoint and run as debug option ...
Nibin Mathew's user avatar
0 votes
1 answer
321 views

We recently migrated our selenium script from Selenium 3.141.x and JDK 1.8 to Selenium 4.18.1 and JFK 17. In our web application, we use multiple role with each role has a seperate username and ...
Ramkumar's user avatar
  • 176
2 votes
4 answers
4k views

I got the below error when running selenium in Chrome version 123.0.6312.59 : Response code 500. Message: session not created: This version of ChromeDriver only supports Chrome version 114 The ...
ipang's user avatar
  • 21
0 votes
3 answers
4k views

I'm new to selenium and stuck on launching URL in chrome. selenium.chrome.ChromeDriver; here's code snip import java.time.Duration; import org.openqa.selenium.WebDriver; import org.openqa. import io....
Trupz's user avatar
  • 1
0 votes
0 answers
54 views

I'm trying to close the modal that pops up when opening a netbanking website. But I'm unable to identify the modal. Selectors hub shows the above error. <div class="popup" id="popup&...
pyrex's user avatar
  • 1
0 votes
1 answer
46 views

Here is my code: package Flows; import java.io.IOException; import java.time.Duration; import java.util.concurrent.TimeUnit; import org.apache.poi.ss.usermodel.Workbook; import org.apache.poi.xssf....
Fayaz's user avatar
  • 35
0 votes
2 answers
225 views

How to select the required dropdown value when there is no id for the dropdown options and there is no select class and the order of the dropdown values changes each time. This is a react material ui ...
Suhas V's user avatar
  • 11
0 votes
1 answer
25 views

Managing the delay in loading a web table before clicking another element The web table exhibits a prolonged loading time, necessitating the implementation of a wait strategy in Selenium (Java) to ...
sarath k's user avatar
0 votes
0 answers
34 views

I'm trying to automate where I'll be choosing August 23 in the date. But what is happening is that instead of August it taking another click and it lands on September. Why is that? It seems that my ...
Messiah's user avatar
0 votes
1 answer
47 views

Hi I am writing a script wherein I need to check if the element is present or not? However, when the element is not present then the following code is giving me org.openqa.selenium....
Sandesh's user avatar
0 votes
2 answers
443 views

I am working with azure devops, and using Java selenium to runs test scripts, I couldn't find a way to post my results in the test plan whether it fails or passed with screenshots. I already have a ...
Ahmed Alaa Ewis's user avatar
1 vote
1 answer
85 views

I am new to Selenium with Java. As per the requirement I need to access a TAB within my Angular application. <a _ngcontent-ng-c689374991="" data-val="Dreams" routerlink="/...
Arpit_H's user avatar
  • 254
1 vote
0 answers
200 views

I am using selenium grid where multiple laptops are connected as a node machine and we are using electron browser to launch the application. It was working fine but now it's broken cause browser ...
mizan rahman's user avatar
0 votes
1 answer
55 views

enter image description here`public DDLogin_Page(WebDriver driver) { this.driver = driver; } public void AccessLogin() throws IOException, InterruptedException { WebElement oauth = driver.findElement(...
Nethmi Edirisooriya's user avatar
0 votes
0 answers
89 views

How to handle SSO in Selenium Java with cucumber framework. Can anybody tells me what is the process of doing it?
Techie_Taks's user avatar
3 votes
1 answer
7k views

I am trying to execute a Java selenium test. Expected outcome: Browser session is started and test steps are performed. Current behavior: Browser session is not started with error: org.openqa.selenium....
Katerina Adamantidi's user avatar
2 votes
2 answers
11k views

I got hit by this issue with setting up the webdrivers. I had to update my Chrome to 116.0.5845.97. This is how my maven looks like : <dependency> <groupId>org.seleniumhq....
Sunny's user avatar
  • 99
0 votes
0 answers
228 views

java.lang.NoClassDefFoundError: org/openqa/selenium/AcceptedW3CCapabilityKeys at org.openqa.selenium.remote.RemoteWebDriver.lambda$checkNonW3CCapabilities error after upgrading my selenium from 3.14 ...
Pathfinder's user avatar
9 votes
9 answers
57k views

OS : Windows server Language : Java Chrome version : 116.0.5845.97 Chrome driver version : 116.0.5845.96 OUTPUT : SLF4J: No SLF4J providers were found. SLF4J: Defaulting to no-operation (NOP) logger ...
Hrushikesh Shewale's user avatar
1 vote
1 answer
812 views

When running the below simple example against Selenium 4.11, at some iteration in the loop the program will fail to get a new ChromeDriver instance with the following message: Exception in thread &...
johnd's user avatar
  • 526
0 votes
1 answer
69 views

The .click() is not doing the click action on the button. Howsoever I change the identifier with css, xpath it does not click it. I am not sure what is wrong and what am I missing. Any help is ...
mmar's user avatar
  • 2,100
0 votes
1 answer
251 views

While I'm trying to execute the program, the program is getting failed also the following is the failure message I'm getting and I'm unable to resolve this : " WARNING: IOException running ...
sagar mandla's user avatar
1 vote
1 answer
126 views

Now I have method, which will return me xpath value i.e. public String xpathValue (String countryName){ return "//*[label="+countryName+"]" } And if I call it with Nigeria it will ...
qatesterbecomingprogrammer's user avatar
0 votes
3 answers
488 views

I need to perform a Drag and Drop using Selenium and Java. I used dragAndDrop() method in Action class for this. but it didn't work. From element is selected but its not moving to the To element. I ...
Sasith Bandara's user avatar
0 votes
1 answer
292 views

Please note that I have tried all the explanations available (mostly) and still not working. The command I'm using to launch the browser session is as follows: chrome --remote-debugging-port=9222 --...
Aliul Islam Abir's user avatar
0 votes
4 answers
194 views

I have written a simple Selenium-based automation script for a login page. But I have a separate class for page objects and methods, another class for reusable components, and then the test class. ...
Test Bite's user avatar
0 votes
0 answers
320 views

I am working on running Selenium(Serenity) scripts in Jenkins. Here, my browser window size which is 1920x1080 px resolution and chrome version is 114.0.5735.199. The script is working as expected in ...
Borra Suneel's user avatar
0 votes
2 answers
340 views

There was another StackOverFlow question for which I had to write a program. My program was not working at all. The program is working fine when we debug it. It's failing at other times. I assumed ...
Ahamed Abdul Rahman's user avatar
0 votes
2 answers
169 views

When I execute a Selenium Script using Firefox, the Firefox opens up but it doesn't redirect to the URL. Below is the error which is displayed on the Eclipse Console: org.openqa.selenium.firefox....
Khaoula ba's user avatar
3 votes
1 answer
2k views

I have tried to set the argument as options.addArguments("--headless"); but it's not working. Please note that I don't want to use setHeadless(Boolean) method since it's deprecated now. I ...
Aliul Islam Abir's user avatar
0 votes
2 answers
992 views

I get the following when running my Selenium framework in parallel mode using TestNG. org.openqa.selenium.NoSuchSessionException: invalid session id The issue only happens in parallel mode and when ...
michel reyes's user avatar
0 votes
2 answers
385 views

I am having multiple API tests which have different sets of multipart input values which vary dynamically, I want to create 1 common function which can accept these varying multiple multipart into a ...
Automation Engr's user avatar