How to get findElementById method?

前端 未结 3 1740
清酒与你
清酒与你 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:57

    You should use the method from the class By:

    driver.findElement(By.id("element id")) 
    

提交回复
热议问题