Home > Net >  Selenium Java: How to click on button in the table
Selenium Java: How to click on button in the table

Time:11-26

How to click the button Hello, how can i click on the Button ? And how can i click on the button in the next row ?

CodePudding user response:

Try this way: driver.findElement(By.cssSelector("THE CSS SELECTOR HERE']")).click();

  • Related