Questions tagged [selenium-java]

No instructions have been provided for this tag … at the moment!

Encountered an error in the main thread: org.openqa.selenium.ElementNotInteractableException. The element is not interactable while using Selenium with Java and Edge WebDriver

Testing out some code: import java.time.Duration; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.edge.EdgeDriver; import org.openqa.selenium.support.ui.ExpectedConditio ...

Encountering an issue with interacting with a radio button in Selenium using Java where an error is thrown

Today's challenge involves testing the functionality of the website pigu.lt by updating personal data. Take a look at the code snippet below: import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import ...

Is it possible to switch to a single machine with higher configuration and 2 nodes instead of having 2 machines with lower configuration, each containing only 1 node in the Selenium grid?

I am currently utilizing two Windows VMs, each equipped with 2 CPU cores and 8GB of RAM. My tests have been running smoothly using Selenium Grid, with 7 instances of Chrome being run simultaneously across these machines. This setup entails that one machine ...

The program encountered a java.lang.NullPointerException error stating that it is unable to call the method "org.openqa.selenium.WebDriver.findElement(org.openqa.selenium.By)" due to the null value of "this.driver"

Help Needed: Error Message: java.lang.NullPointerException: Cannot invoke "org.openqa.selenium.WebDriver.findElement(org.openqa.selenium.By)" because "this.driver" is null Below is the code and a screenshot of the error: https://i.stack.imgur.com/A7F49.p ...