如何使用 Watir 工具包在 Ruby 中使用 tokenize_tagline 检索 html 标签

发布于 2024-11-25 11:37:43 字数 260 浏览 2 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦幻之岛 2024-12-02 11:37:43

如果您使用的是最新的 watir-webdriver gem 并且您打开的 HTML 页面仅包含

<iframe marginheight=0 marginwidth=0 frameborder=0 height=100 width=400 src="/website/authorisation.jsp?a=f556"></iframe>

您可以获取 src 属性的值,

browser.frame.src

它将返回 "file:///website/authorization. jsp?a=f556"

If you are using the latest watir-webdriver gem and you open HTML page that contains only

<iframe marginheight=0 marginwidth=0 frameborder=0 height=100 width=400 src="/website/authorisation.jsp?a=f556"></iframe>

you can get the value of src attribute with

browser.frame.src

It will return "file:///website/authorisation.jsp?a=f556".

囍孤女 2024-12-02 11:37:43

您可以使用 javascript 获取 iframe 内部 html

you can get iframe inner html by using javascript

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文