我有一个试图从中提取信息的URL。我想导航到具有类值"_g3j"的某个锚标记,然后单击它(它具有按钮角色)。我不确定如何访问它并使用单击方法。该单击将(理想情况下)链接到另一个内部页面,我想在其中再次提取所有链接。
根据与此相关的早期答案,我已经尝试了
target_parent_div = b.divs.find { |div| div.a(class: "_g3j").exists? }
作为示例,我要单击的按钮的值如下所示:
a class="_g3j" ajaxify="/ajax/browser/dialog/fanned_pages/?id=244944385603396&showauxiliary=1" href="/browse/fanned_pages/?id=244944385603396&showauxiliary=1" rel="dialog" aria-labelledby="u_0_1z" role="button" wotsearchprocessed="true"></a>
我想检索给定的 href 值,单击它,它会打开另一个菜单,其中包含如下元素:
<a class="_8o _8t lfloat _ohe" href="https://www.facebook.com/bubblewitchsaga2?fref=pb" tabindex="-1" aria-hidden="true" wotsearchprocessed="true"><img class="_s0 _rw img" src="https://fbcdn-profile-a.akamaihd.net/hprofile-ak-xfp1/v/t1.0-1/p40x40/10426523_405077716312722_7865103072715423222_n.png?oh=02338f513523fbf8e2d6a2f4bed13067&oe=558DEDE1&__gda__=1434976647_dafb1152b9d44f995c38b80afded1782" alt=""></a>
在第二种情况下,我如何在此处获得 href?
对于详细的问题,我深表歉意,但我仍在等待进入谷歌组,我似乎找不到与此相关的任何文档。
如果你想点击链接,有什么问题?
require 'watir-webdriver'
browser = Watir::Browser.new
browser.goto 'your link'
browser.link(:class => '_g3j').click
browser.link(:class => '_8o').click
UPD:如果第一个链接打开一个新窗口,请使用以下内容:
browser.windows.last.use do
browser.link(:class => '_8o').click
#Or you can take a list of links
#And do with them all what you want
browser.links #It's create array of links
end