You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 29, 2020. It is now read-only.
In irb I try to loop over a list of all the links on the Google homepage:
server = Culerity::run_server
browser = Culerity::RemoteBrowserProxy.new server
browser.goto("http://www.google.com")
browser.links.each do |link|
link.inspect
end
The each block throws the following error:
warning: multiple values for a block parameter (0 for 1)
from /Users/john/.bundle/ruby/1.8/gems/culerity-0.2.10/lib/culerity/remote_object_proxy.rb:65
=> 28
It seems Culerity is forwarding the method in the remote_object_proxy where it fails for some reason.
In irb I try to loop over a list of all the links on the Google homepage:
The each block throws the following error:
It seems Culerity is forwarding the method in the remote_object_proxy where it fails for some reason.
Using Rails 3 beta 4.