xpath定位:
禅道登录页面定位:
driver.find_element_by_xpath("//*[@id=‘account‘]").send_keys("admin")
driver.find_element_by_xpath("//*[@id=‘loginPanel‘]/div/div[2]/form/table/tbody/tr[2]/td/input").send_keys("admin123456")
driver.find_element_by_xpath("//*[@id=‘submit‘]").click()
//*[@id=‘account‘] // 相对路径;*所有标签;@要找的属性;
//*[@class="j-inputtext dlpwd"]
css定位:
禅道登录页面定位:
第四记:xpath定位
原文:https://www.cnblogs.com/CS-zhanglu/p/9522882.html