selenium导入By包使用

背景:

在使用最新3.10.4Python版本时候,用selenium进行xpath定位元素,编译器提示:

DeprecationWarning:

find_element_by_xpath is deprecated. Please use find_element(by=By.XPATH, value=xpath) instead driver.find_element_by_xpath('//*[@id="app"]/section/main/div/button[1]').click()

find_element_by_xpath 方法已经被弃用,请使用新的导入By包的方法,这里简单记一下导入By包后如何使用新的方法进行xpath定位

1.导入by包:

from selenium.webdriver.common.by import By

By类的方法:
1.find_element(By.XPATH, ‘xpath路径’)
2.需要两个参数,第一个参数为定位的类型,由By提供,第二个参数为定位的具体方式值

selenium导入By包使用_第1张图片

你可能感兴趣的:(Selenium,selenium,测试工具)