1
vote
0answers
43 views

Error when Parsing Pdf in selenium webdriver ruby

I am trying to parse online pdf through automation testing in selenium webdriver ruby.I tried to do according to this url "http://blog.bitcrowd.net/test-rails-pdf-output-with-cucumber/". I am ...
1
vote
1answer
30 views

Determining what requests happen after UI interaction with Rails, Capybara

I'm using Capybara for web crawling, and I have the following challenge: after I interact with some DOM elements (e.g. click a button), I want to know (or make a good guess) if a new page is loading ...
0
votes
0answers
117 views

Anonimity with selenium webdriver using capybara,firefox profile

Everytime when I use vpn while doing tests with capybara selenium webdriver firefox on windows- remoted sites allow anonimity, but when I use proxy in capybara selenium webdriver firefox (turn off ...
0
votes
1answer
143 views

The browser window may have been closed. (Selenium::WebDriver::Error::UnknownError)

I have multiple features when run together throw this error. If I run the scenarios by them self there is no issue. I think the issue is that popups are generated during the test run and are not ...
2
votes
1answer
78 views

Capybara with selenium fails. Works in browser

I have a simple login system that works in the browser. I recently switched my cucumber tests to use selenium because I need ajax calls and now the login/auth steps do not pass anymore. The app still ...
2
votes
1answer
233 views

setting request headers in selenium

I'm attempting to set the request header 'Referer' to spoof a request coming from another site. We need the ability test that a specific referrer is used, which returns a specific form to the user, ...
3
votes
1answer
218 views

How to download multiple files on Chrome with Capybara/Selenium?

I am using Capybara with Chrome and Selenium. When I attempt to click on a link that causes an automatic download, the file is downloaded correctly. If I try to do this again, Chrome shows the ...
1
vote
1answer
111 views

Ruby Capybara error - port_prober.rb:28:in `initialize': A socket operation encountered a dead network. - bind(2)

I'm trying to run the following Ruby code on a new machine require 'rubygems' require 'capybara' require 'capybara/dsl' require "selenium-webdriver" Capybara.run_server = false ...
0
votes
1answer
100 views

Skip image loading by selenium

How to skip image loading using selenium webdriver for cucumber test cases. My test cases are failing due to image is not loading properly. a spinner a rolling when i see in Net tab in firebug.
0
votes
1answer
153 views

How to open mutiple tabs within a browser using Capybara?

I need to open multiple tabs within a single browser and i need switch over all the tabs. Give me your suggestions. Thanks in advance.
0
votes
1answer
89 views

How can I skip ajax in capybara 1.4.1 using selenium webdriver (2.27.2)

I am getting timeout error because of image loading using Ajax and it is taking lot of time so I want to skip/ignore ajax request. (I am using capybara 1.4.1 and selenium 2.27.2) webkit skips loading ...
0
votes
0answers
23 views

how to use the below code for hovering an element in rspec and where to define this method?

module Capybara module Node class Element def hover @session.driver.browser.action.move_to(self.native).perform end end end end
10
votes
4answers
2k views

Unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055)

While testing scenario by cucumber i'm getting the following error when running rspec tests unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055) ...
0
votes
2answers
877 views

Selenium webdriver unable to open a webpage in a capybara based framework

I'm trying to launch a webpage using capybara & selenium webdriver using cucumber. A browser is launched but it's not able to load the url. Below is my env.rb file begin require ...
0
votes
1answer
50 views

How I can use Selenium methods while “finding” via Capybara methods?

As a result I have the instance of Capybara::Element and methods from Selenium::WebDriver::Element cant be used according to the present element. What I have done wrong?
1
vote
1answer
157 views

unknown option: {:resynchronize=>false} (ArgumentError) in …/lib/selenium/webdriver/firefox/br idge.rb:17:in `initialize'

I am using Capybara selenium webdriver in my env.rb I have the following code Capybara::Selenium::Driver.new(app, :browser => :ff, :resynchronize => false) when I execute my feature file ...
0
votes
1answer
152 views

Capybara RackTest cannot click or find button but Selenium can

I'm having trouble with a Cucumber test using Capybara (2.0.0). Here's the (valid) html generated by page.html when running in RackTest: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE ...
2
votes
2answers
412 views

Selenium Web Driver Error

I'm getting a weird error while trying to click on a Capybara Element I'm using find(:xpath,"//a[contains(text(),'Connect')]").click (find(:xpath,"//a[contains(text(),'Connect')]").present? return ...
4
votes
2answers
169 views

How can I skip the login in cucumber scenarios to make test fasters?

I have a rails-app and I'm trying making my cucumber/capybara/selenium-webdriver tests faster. Most of my scenarios look like: @javascript Feature: Writing reports In order ..... Background: ...
0
votes
1answer
2k views

Errno::ECONNREFUSED: Connection refused - connect(2) test_helper.rb

I am new to Ruby and needed some assistance figuring something out: I've been stuck on this error for 2 days. I know if I figure out the connect issue everything is going to work perfectly. Please ...