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();
Is Your Infrastructure Ready for Global Traffic Spikes?
Unexpected load surges can disrupt your services. With LoadFocus’s cutting-edge Load Testing solutions, simulate real-world traffic from multiple global locations in a single test. Our advanced engine dynamically upscales and downscales virtual users in real time, delivering comprehensive reports that empower you to identify and resolve performance bottlenecks before they affect your users.
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!