Find element by link text in selenium
Selenium find element by link text Find element by link text is used only to locate hyperlinks on page. You can use By.linkText method of selenium to find link on page with exact match of text. Selenium find link by text value of hyperlink element. Expression to find by link text : findElement(By.linkText(“Text of link”)); How to … Read more