如何在xpath中找到包含文本的div

时间:2014-08-19 06:55:54

标签: c# xpath webdriver

我正在使用webdriver和C#,我有这个div:

<div class="dijitTreeRow dijitInline dijitTreeRowSelected" 
     role="presentation" data-dojo-attach-point="rowNode" 
     title="TestPage, ID: 114 (Type: M)">

如何找到包含此元素的元素? ID是动态的,所以我不能总是用整个字符串来查找它,只是用“Testpage”开头。

1 个答案:

答案 0 :(得分:0)

你可以尝试这个XPath:

//div[starts-with(@title, 'TestPage')]

或使用contains()

//div[contains(@title, 'TestPage')]