加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

xml – 使用XPATH搜索包含的文本

发布时间:2020-12-16 02:03:28 所属栏目:百科 来源:网络整理
导读:我使用 XPather Browser在HTML页面上检查我的XPATH表达式。 我的最终目标是在Selenium中使用这些表达式来测试我的用户界面。 我得到了一个内容类似于这样的HTML文件: tr tdabc/td tdnbsp;/td/tr 我想选择一个文本包含字符串“ nbsp;”的节点。 用一个正常的
我使用 XPather Browser在HTML页面上检查我的XPATH表达式。

我的最终目标是在Selenium中使用这些表达式来测试我的用户界面。

我得到了一个内容类似于这样的HTML文件:

<tr>
  <td>abc</td>
  <td>&nbsp;</td>
</tr>

我想选择一个文本包含字符串“& nbsp;”的节点。

用一个正常的字符串像“abc”没有问题。我使用类似于// td [text()=“abc”]的XPATH。

当我尝试使用像// td [text()=“& nbsp;”]这样的XPATH时,它不返回任何内容。有关于“&”的文本的特殊规则?

似乎 OpenQA,家伙背后Selenium,已经解决了这个问题。他们定义了一些变量来显式地匹配空格。在我的情况下,我需要使用类似于// td [text()=“$ {nbsp}”]的XPATH。

我在这里转载了OpenQA关于这个问题的文本(发现here):

HTML automatically normalizes
whitespace within elements,ignoring
leading/trailing spaces and converting
extra spaces,tabs and newlines into a
single space. When Selenium reads text
out of the page,it attempts to
duplicate this behavior,so you can
ignore all the tabs and newlines in
your HTML and do assertions based on
how the text looks in the browser when
rendered. We do this by replacing all
non-visible whitespace (including the
non-breaking space “&nbsp;“) with a
single space. All visible newlines
(<br>,<p>,and <pre> formatted
new lines) should be preserved.

We use the same normalization logic on
the text of HTML Selenese test case
tables. This has a number of
advantages. First,you don’t need to
look at the HTML source of the page to
figure out what your assertions should
be; “&nbsp;” symbols are invisible
to the end user,and so you shouldn’t
have to worry about them when writing
Selenese tests. (You don’t need to put
&nbsp;” markers in your test case
to assertText on a field that contains
&nbsp;“.) You may also put extra
newlines and spaces in your Selenese
<td> tags; since we use the same
normalization logic on the test case
as we do on the text,we can ensure
that assertions and the extracted text
will match exactly.

This creates a bit of a problem on
those rare occasions when you really
want/need to insert extra whitespace
in your test case. For example,you
may need to type text in a field like
this: “foo “. But if you simply
write <td>foo </td> in your
Selenese test case,we’ll replace your
extra spaces with just one space.

This problem has a simple workaround.
We’ve defined a variable in Selenese,
${space},whose value is a single
space. You can use ${space} to
insert a space that won’t be
automatically trimmed,like this:
<td>foo${space}${space}${space}</td>.
We’ve also included a variable
${nbsp},that you can use to insert
a non-breaking space.

Note that XPaths do not normalize
whitespace the way we do. If you need
to write an XPath like
//div[text()="hello world"] but the
HTML of the link is really
hello&nbsp;world“,you’ll need to
insert a real “&nbsp;” into your
Selenese test case to get it to match,
like this:
//div[text()="hello${nbsp}world"].

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读