使用selenium的By方式定位,首先得导入该模块
from selenium.webdriver.common.by import By
1,id属性定位
find_element(By.ID,"id")
2,name属性定位
find_element(By.NAME,"name")
3,classname属性定位
使用selenium的By方式定位,首先得导入该模块
from selenium.webdriver.common.by import By
1,id属性定位
find_element(By.ID,"id")
2,name属性定位
find_element(By.NAME,"name")
3,classname属性定位