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()