摘要:
Xpath in selenium is close to must required. XPath is element locator and you need to provide xpath during selenium test script creation. You need to 阅读全文
摘要:
starts-with 顾名思义,匹配一个属性开始位置的关键字 contains 匹配一个属性值中包含的字符串 text() 匹配的是显示文本信息,此处也可以用来做定位用 eg //input[starts-with(@name,'name1')] 查找name属性中开始位置包含'name1'关键字 阅读全文