我正在尝试构建一个与webdriver一起使用的相对xpath,但是我无法获得我尝试过的任何一个。
我的网络元素:
<div class="pa-PrimaryNavWidget-hyperlink" style="color: rgb(255, 255, 255); cursor: default; background-color: rgb(0, 173, 239);">Home</div>
我已经找到了元素的绝对路径:
html/body/div[2]/div[2]/div/div[2]/div/div[1]/div[2]
我试过了:
//div[contains(@class, 'pa-PrimaryNavWidget-hyperlink') and text()='Home']
//div[@class='pa-PrimaryNavWidget-hyperlink’ and text()='Home’]
//div[contains(.,'Home')]
答案 0 :(得分:0)
试试这个
//div[@class="pa-PrimaryNavWidget-hyperlink" and text()='Home']