Here is how to click a link by text with Selenium WebDriver in Java using the built in WebDriver helper methods or by XPath:
Click link by full text using Selenium WebDriver
WebElement linkByText = driver.findElement(By.linkText("My Link"));
linkByText.click();
Are Your APIs as Reliable as You Think?
Don’t let hidden issues disrupt your service. With LoadFocus’s advanced API Monitoring, catch problems before they impact your users. Ensure flawless performance and avoid costly outages—monitor, test, and optimize your APIs effortlessly.
Click link by partial text using Selenium WebDriver
WebElement linkByPartialText = driver.findElement(By.partialLinkText("First"))
linkByPartialText.click();
Click link by text using XPath in Selenium WebDriver
WebElement linkByTextUsingXPath = driver.findElement(By.xpath("//a[text()='First']"));
linkByTextUsingXPath.click();
Click link by partial text using XPath in Selenium WebDriver
WebElement linkByPartialTextUsingXPath = driver.findElement(By.xpath("//a[contains(text(),'ABC')]"));
linkByPartialTextUsingXPath.click();
More details here on how to locate elements with Selenium WebDriver.
LoadFocus is a cloud testing platform for:
Think your website can handle a traffic spike?
Fair enough, but why leave it to chance? Uncover your website’s true limits with LoadFocus’s cloud-based Load Testing for Web Apps, Websites, and APIs. Avoid the risk of costly downtimes and missed opportunities—find out before your users do!