打开百度并且点击登录按钮代码:
from selenium.webdriver import Chrome
Chrome = Chrome()#启动chromedriver
Chrome.get('http://www.baidu.com')#打开http://www.baidu.com
Chrome.find_element_by_xpath('//*[@id="s-top-loginbtn"]').click()#点击登录按钮
从下图中,我们可以看到find_element_by_xpath被带上了删除线
但是执行却可以执行,只是在会提示:
DeprecationWarning: find_element_by_* commands are deprecated. Please use find_element() instead
Chrome.find_element_by_xpath('//*[@id="s-top-loginbtn"]').click()#点击登录按钮
更改后代码:
from selenium.webdriver.common.by import By
from selenium.webdriver import Chrome
Chrome = Chrome()#启动chromedriver
Chrome.get('http://www.baidu.com')#打开http://www.baidu.com
Chrome.find_element(By.XPATH,'//*[@id="s-top-loginbtn"]').click()#点击登录按钮
改动新添加了
from selenium.webdriver.common.by import By
将:
Chrome.find_element_by_xpath('//*[@id="s-top-loginbtn"]').click()#点击登录按钮
修改为:
Chrome.find_element(By.XPATH,'//*[@id="s-top-loginbtn"]').click()#点击登录按钮