标签:htm 数字 body 脚本 元素定位 inpu 斜杠 lan start
《跟着日邢一珊,学习自动化测试》-----第四讲20170824
WEB自动化测试Selenium 的使用 (四) XPATH元素定位。
作者:日邢一珊
自动化测试脚本分享群:654395302 、 567415093
打赏,就是鼓励我写作的动力。 2.88 3.88 6.88 12.88 都是不错的数字呢~
By.xpath("html/body/div/form/input")
两个斜杠代表相对路径
By.xpath("//input//div")
By.xpath("//input[4]")
By.xpath("//input[@id=‘kw1‘]")By.xpath("//input[@type=‘name‘ and @name=‘kw1‘]")
By.xpath("//input[start-with(@id,‘nice‘)]")By.xpath("//input[ends-with(@id,‘很漂亮‘)]")By.xpath("//input[contains(@id,‘那么美‘)]")
By.xpath("//input[@id=‘kw1‘]//input[start-with(@id,‘nice‘]/div[1]/form[3])
打赏,就是鼓励我写作的动力。 2.88 3.88 6.88 12.88 都是不错的数字呢~
以上,谢谢阅读。
标签:htm 数字 body 脚本 元素定位 inpu 斜杠 lan start
原文地址:http://www.cnblogs.com/xingyishan/p/7425095.html