All Questions
5 questions
2
votes
1
answer
146
views
NoSuchElementException when trying to find element with valid xpath on Chrome and Edge
I am testing https://www.policybazaar.com using selenium, testNG, java. I get the no such element error while trying to select a date from date picker on https://www.policybazaar.com/travel-insurance/...
1
vote
0
answers
38
views
How can I integrate the "WebDriverManager" library into Karate for Web Automation? [duplicate]
WebDriverManager integration with Selenium is as follows;
import io.github.bonigarcia.wdm.WebDriverManager;
class ChromeCreateTest {
WebDriver driver;
@BeforeEach
void setup() {
...
0
votes
0
answers
60
views
Unable to execute a selenium script through main
I am unable to execute a selenium script through main.
I have created a executable jar of the script, it is running fine with command prompt but not with main or GET service.
I am using command:
...
1
vote
0
answers
43
views
I am unable to click on a radio button using selenium webdriver as it goes on it clicks the radio button and unclicks it automatically.
I have seven questions on a web page. each question has 2 to 4 options and i have to select one option for each of the seven questions and then only i can proceed.
I am able to click the option for ...
-1
votes
1
answer
377
views
Finding visible elements on webapp using selenium
I need help to find visible elements on a webapp page using selenium.
For example, I need to find a row that is click-able and click on it.
The problem is that the elements are visible but not present ...