selenium中Service对象和find_element方法

先来看一段代码: 

from selenium import webdriver

url='https://baidu.com'

path='chromedriver.exe'

browser=webdriver.Chrome(path)

browser.get(url)

input=browser.find_element_by_id('kw')

input.send_keys("ZKYQUQ")

button=browser.find_element_by_id('su')

button.click()

上述代码执行结果如下:

selenium中Service对象和find_element方法_第1张图片

出现DeprecationWarning警告的类型错误:该类型的警告大多属于版本已经更新,所使用的方法过时。

第一个警告,查看Chrome方法源码:

selenium中Service对象和find_element方法_第2张图片

 selenium中Service对象和find_element方法_第3张图片

发现executable_path被重构到了Service中,因此解决方法为:

from selenium.webdriver.chrome.service import Service

s = Service("chromedriver.exe")

driver = webdriver.Chrome(service=s)

第二三个警告,查看方法源码,发现实际上是通过find_element方法来实现元素定位的,因此可以直接使用find_element方法。

selenium中Service对象和find_element方法_第4张图片

 selenium中Service对象和find_element方法_第5张图片

 继续查看参数中By类源码:

selenium中Service对象和find_element方法_第6张图片

 因此,上述警告解决方法为:

from selenium.webdriver.common.by import By

input=browser.find_element(By.ID,'kw')

input.send_keys("ZKYQUQ")

button=browser.find_element(By.ID,'su')

button.click()

你可能感兴趣的:(python,爬虫,pycharm)