如何检查和保存 span 元素中的文本
How can I check and save text from span element
我一直试图从 span 元素中获取文本,但没有成功。
使用以下内容:
.check(css("span[id='hostName']", "text").saveAs("__HOST")))
但找不到文本。
这是html
<span id="hostName" style="padding:0">01</span>
我可以用 css 检查器来做这个还是我必须求助于正则表达式
css(expression, attribute)
expression can be a plain String, a String using Gatling EL or an Expression[String].
attribute is an optional String.
When filled, check is performed against the attribute value. Otherwise check is performed against the node text content.
我一直试图从 span 元素中获取文本,但没有成功。 使用以下内容:
.check(css("span[id='hostName']", "text").saveAs("__HOST")))
但找不到文本。
这是html
<span id="hostName" style="padding:0">01</span>
我可以用 css 检查器来做这个还是我必须求助于正则表达式
css(expression, attribute)
expression can be a plain String, a String using Gatling EL or an Expression[String].
attribute is an optional String.
When filled, check is performed against the attribute value. Otherwise check is performed against the node text content.