您的当前位置:首页正文

Selenium和Appium+Python:find_element_by_id方法被弃用,在Pycharm中有删除线

2024-11-12 来源:个人技术集锦
Python:3.9.12
Selenium:4.1.3
Appium_Python_Client:2.6.1

在使用 find_element_by_id 方法显示删除线,并报错方法被弃用

# 需要用到的包
from selenium import webdriver
from selenium.webdriver.common.by import By

# 例如ID元素定位(其他方法把ID换成其他方法即可)
driver.find_element(By.ID, "password").send_keys("chen123456")

Appium

# 需要用到的包
from appium import webdriver
from appium.webdriver.common.appiumby import By

# 例如Class元素定位(其他方法把CLASS_NAME换成其他方法即可)
driver.find_element(By.CLASS_NAME, "android.widget.RelativeLayout").click()

Top