单击具有按钮角色的锚标记

Clicking on Anchor Tag with Button Role

我有一个 URL 正试图从中提取信息。我想导航到某个具有 class 值“_g3j”的锚标记,然后单击它(它具有按钮作用)。我不确定如何访问它并使用点击方法。该点击将(理想情况下)link 转到另一个内部页面,我想在其中再次提取所有 link。

根据之前与此相关的回答,我尝试了

 target_parent_div = b.divs.find { |div| div.a(class: "_g3j").exists? }  

作为示例,我要单击的按钮的值如下所示:

  a class="_g3j" ajaxify="/ajax/browser/dialog/fanned_pages/?id=244944385603396&amp;showauxiliary=1" href="/browse/fanned_pages/?id=244944385603396&amp;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&amp;oe=558DEDE1&amp;__gda__=1434976647_dafb1152b9d44f995c38b80afded1782" alt=""></a>    

在第二种情况下,如何获取这里的href?
对于这个详细的问题,我深表歉意,但我仍在等待进入 google 组,我似乎找不到与此相关的任何文档。

如果您想点击 link,有什么问题吗?

require 'watir-webdriver'
browser = Watir::Browser.new
browser.goto 'your link'
browser.link(:class => '_g3j').click
browser.link(:class => '_8o').click

UPD:如果首先 link 打开一个新的 window,请使用类似:

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