在像往常一样用find_element_by_xpath时,突然出现如下错误提示,
AttributeError: ‘WebDriver‘ object has no attribute ‘find_element_by_id‘
不知道为什么,可能是selenium更新了吧
后来搜了一堆资料,尝试了最后这一个方法好使
不能用原来的语句了,要改用新的语句,并且引入By模块
新语句find_element()
其中第一个填入By.XPATH,或者其他的方式和以前名字一样,
然后逗号, 再填入xpath内容
举例如下:
from selenium import webdriver
from selenium.webdriver.common.by import By
web = webdriver.Chrome()
url = 'https://www.douyin.com/'
web.get(url)
web.find_element(By.XPATH,'//*[@id="web-login-container"]/article/article/article/div[1]/ul[1]/li[3]').click()