How to get findElementById method?

前端 未结 3 1738
清酒与你
清酒与你 2021-01-29 13:21

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

3条回答
  •  伪装坚强ぢ
    2021-01-29 13:58

    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()
    

提交回复
热议问题