Selenium Xpath

1. 只选择显示的元素 使用 not(@hidden)

例子: //div[@class='tag-selector' and not(@hidden)]

2. 选择text中等于特定值的元素,包含有空格字符的, 使用normalize-space

例子: //div[normalize-space(text())='Create New']

你可能感兴趣的:(自动化测试相关,程序人生)