Articles → SELENIUM → Locate Web Element Through Link Text In Selenium
Locate Web Element Through Link Text In Selenium
Scenario
- Go to google.com
- Search the link with the text ‘Images’
- Click on it.
Syntax
driver.findElement(By.linkText("link_text"))
Example
package com.FirstSeleniumProject;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
public class MyClass {
public static void main(String[] args) {
WebDriver driver;
String service = "IEDriverServer path";
System.setProperty("webdriver.ie.driver", service);
driver = new InternetExplorerDriver();
driver.get("http://google.com/");
// Locating by link text
driver.findElement(By.linkText("Images")).click();;
}
}
Output
Click to Enlarge