如何使用 Watir 工具包在 Ruby 中使用 tokenize_tagline 检索 html 标签
我有一个 HTML 元素:
<iframe marginheight=0 marginwidth=0 frameborder=0 height=100 width=400 src="/website/authorisation.jsp?a=f556">
</iframe>
我想检索该元素的代码 src。请问如何做到这一点?我一直在环顾四周,我看到的唯一答案是对元素进行标记,但没有提及如何使用标记生成器。
I have an HTML element:
<iframe marginheight=0 marginwidth=0 frameborder=0 height=100 width=400 src="/website/authorisation.jsp?a=f556">
</iframe>
I want to retrieve the code src of the element. How does one do that please? I have been looking around and the only answer I see is to tokenize the element but there is no mention of how you use the tokenizer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是最新的 watir-webdriver gem 并且您打开的 HTML 页面仅包含
您可以获取
src
属性的值,它将返回
"file:///website/authorization. jsp?a=f556"
。If you are using the latest watir-webdriver gem and you open HTML page that contains only
you can get the value of
src
attribute withIt will return
"file:///website/authorisation.jsp?a=f556"
.您可以使用 javascript 获取 iframe 内部 html
you can get iframe inner html by using javascript