1

我正在尝试为自动 WebDriver 测试捕获一行文本,以便稍后在比较中使用它。但是,我找不到适用于 WebDriver 的 XPath。我之前使用过 text() 函数来捕获不在标签中的文本,但在这种情况下它不起作用。这是 HTML,请注意,此文本永远不会相同,因此我不能使用 contains 或类似功能。

<div id="content" class="center ui-content" data-role="content" role="main">
<div data-iscroll="scroller">
<div class="ui-corner-all ui-controlgroup ui-controlgroup-vertical" data-role="controlgroup">
<a class="ui-btn ui-corner-top ui-btn-hover-c" style="text-align: left" data-role="button" onclick="onDocumentClicked(21228772, "document.php?loan=********&folderseq=0&itemnum=21228772&pageCount=3&imageTypeName=1003 Application - Final&firstInitial=&lastName=")" href="#" data-corners="true" data-shadow="true" data-iconshadow="true" data-wrapperels="span" data-theme="c">
<span class="ui-btn-inner ui-corner-top">
<span class="ui-btn-text">
<img class="checkMark checkMark21228772 notViewedCompletely" width="15" height="15" title="You have not yet viewed this document." src="../images/white_dot.gif"/>
1003 Application - Final. (Jan 11 2012  5:04PM)
</span>
</span>
</a>

在此示例中,我尝试捕获的文本是:1003 Application - Final。(2012 年 1 月 11 日下午 5:04)我已经使用 Firebug 检查了该元素,并且尝试了以下 XPath,但没有成功。

html/body/div[1]/div[2]/div/div/a[1]/span/span
html/body/div[1]/div[2]/div/div/a[1]/span/span/text()

WebDriver 测试是用 C# 编写的。

4

4 回答 4

1

你可以使用这个

driver.FindElement(By.XPath(".//div[@id='content']/following-sibling::span[@class='ui-btn-text']") 

或者

var elem = driver.FindElement(By.Id("Content"));
string text = string.Empty;
if(elem!=null) {
   var textElem = elem.FindElement(By.Xpath(".//following-sibling::span[@class='ui-btn-text']"));
   if(textElem!=null) text = textElem.Text();
}
于 2013-02-28T06:47:43.383 回答
1

我能够通过从 XPath 中删除 span 标签来解决这个问题。

GetText("html/body/div[3]/div[2]/div/div/a[1]", SelectorType.XPath);
于 2013-02-28T15:51:18.953 回答
0

python webdriver代码看起来像

driver.find_element_by_xpath("//span[@class='ui-btn-text']").text

但是定位器可能不是唯一的,因为我看不到所有的代码

PS尽量不要使用定位器html/body/div[1]/div[2]/div/div/a[1]/span/span

于 2013-02-27T18:48:18.613 回答
0

方法:从给定的 DOM 中找到 CSS 选择器

派生 CSS:css=#content div.ui-controlgroup > a[onclick*='onDocumentClicked'] > span > span

使用 C# 库方法获取文本。

于 2014-04-04T07:03:55.227 回答