1.

How can I use Selenium WebDriver for clicking on a hyperlink?

Answer»

In SELENIUM, we use the click() method for clicking on a hyperlink.

driver.findElement(By.linkText("Interview BIT Website")).click();


Discussion

No Comment Found