I loaded Selenium latest version 3.3.1 to my system through maven dependencies. While trying to code, I couldn\'t get the method findElementById(). Instead, I am ge
findElementById()
It depends on language you are using for your automation:
For Java:
driver().findElement(By.id("locator")).click();
For Python:
driverInstance.find_element_by_id("Id Locator").click()