我正在使用webdriver和C#,我有这个div:
<div class="dijitTreeRow dijitInline dijitTreeRowSelected"
role="presentation" data-dojo-attach-point="rowNode"
title="TestPage, ID: 114 (Type: M)">
如何找到包含此元素的元素? ID是动态的,所以我不能总是用整个字符串来查找它,只是用“Testpage”开头。
答案 0 :(得分:0)
你可以尝试这个XPath:
//div[starts-with(@title, 'TestPage')]
或使用contains()
:
//div[contains(@title, 'TestPage')]