selenium find element by class code example

Example 1: driver.find_element_by_xpath

driver.find_element_by_xpath('//*[@id="emailField"]')

Example 2: how to find selenium webelement java

//required imports 
WebDriver driver = new ChromeDriver();
WebElement objWE;
//There are many way most common are id and xpath
objWE = driver.findElement(By.id("String of id attribute"));
//To find the xpath easily hit F12 and right click the element you want
//and copy xpath then paste it
objWE = driver.findElement(By.xpath("//*[@id="search"]/div[2]/div[6]/div[1]/div/div"));

Example 3: selenium select element by id

driver.findElement(By.id("ui-datepicker-div"));

Example 4: selenium ways of finding

elementcss= driver.findElement(By.cssSelector('div.nav-search-input'))