Xpath
Xpath
driver.get("https://www.automationexercise.com/products");
// XPath Locator By ID
WebElement productSearch =
driver.findElement(By.xpath("//*[@id='search_product']"));
WebElement Containscontact =
driver.findElement(By.xpath("//h2[contains(text(), 'Contact')]"));
WebElement ContainsSubmit =
driver.findElement(By.xpath("//input[contains(@value, 'Submit')]"));
WebElement ContainsMessage =
driver.findElement(By.xpath("//textarea[contains(@id, 'message')]"));
WebElement Containsupload =
driver.findElement(By.xpath("//input[contains(@name, 'upload')]"));
WebElement ContainsContactUS =
driver.findElement(By.xpath("//a[contains(@href, 'contact_us')]"));
// XPath Locator by Starts With
WebElement StrtsGet = driver.findElement(By.xpath("//h2[starts-
with(text(),'Get')]"));
WebElement StrtsName = driver.findElement(By.xpath("//input[starts-
with(@name,'name')]"));
WebElement StrtsSubm = driver.findElement(By.xpath("//button[starts-
with(@type,'subm')]"));