Tagged Questions
0
votes
2answers
21 views
Capture screencast of rspec selenium browser test
Is it possible to take a screencast of the firefox browser screens as they are controlled by a capybara test with the selenium web driver?
I looked at the sauce driver (1) but wasn't too sure about ...
0
votes
1answer
35 views
Selenium Server - how to run tests I've written (and converted into ruby-rspec)?
I have a large number of unit tests contained within a few Suites in the Selenium firefox IDE.
I've exported the individual tests to ruby/rspec and saved the results.
I've also exported the test ...
0
votes
0answers
106 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
0answers
50 views
Is anything wrong with Selenium, while testing proxy with Capybara
When lunching tests with Capybara, Selenium, Firefox (windows) I am using this type of code
Capybara.reset_sessions!
Capybara.register_driver :selenium do |app|
profile = ...
0
votes
0answers
70 views
$.ajax delete request not sending data parameters in capybara-webkit
I'm finding that my ajax DELETE requests are not sending data parameters to the controller when I execute them through capybara-webkit. However, the data parameters do get sent (and the test passes) ...
0
votes
1answer
72 views
Capybara's existing test + using Selenium to run the tests against a remote server
first of all, excuse my bad English, and execuse my lake of knowledge, am totally new to web development.
I wrote some Tests (Capybara & Rspec), and i am trying to run them against a remote ...
2
votes
0answers
132 views
Selenium failing with EOFile error with chromedriver on linux
I have an automated build machine running cucumber tests on an EC2 instance. I am using capybara (1.1.4) with selenium-webdriver (2.31.0) and chromedriver (25.0.1364.172-187217). The tests are run ...
0
votes
0answers
59 views
checking a checkbox having random ids in cucumber-rails
i have a scenario where i want to check/verify that the checkbox is disabled/checked.i have all the required steps which uses id of the element to verify/check the checkbox.Now i have a checkbox whose ...
1
vote
1answer
126 views
Errors getting Selenium running on rails 4 with Safari, chrome or Firefox
I am trying to get selenium (thru Capybara) working on a rails 4, ruby 2.0.0 environment using rspec. I have tried using every browser by setting config settings in my spec_helper.rb. Example with ...
1
vote
1answer
81 views
Jquery not executing in ruby on rails
I am new to ruby on rails and also jquery . I am trying to write an app in ruby that executes a jquery version
I have jquery - rails (2.2.1) gem and also rails (3.2.12) .
I have used a jquery ...
0
votes
0answers
93 views
Capybara + authlogic: session persistant
I have been searching exhaustively in StackOverflow, but can't find any appropriate solution.
I am testing my javascript in a Ruby on Rails app, using RSpec + Capybara and Selenium driver.
For ...
1
vote
2answers
102 views
multiple instances of cucumber for 3000 scenarios
I have a test pack consisting of more than 3000 scenarios.now the problem is that when i run the scenarios in one shot ..it takes approx 10 hours to complete,i want to divide the scenarios in 4 ...
1
vote
2answers
58 views
fill_in in tinyMce
I want to fill in text in a page having Tinymce Editor for functional Automation testing using Cucumber and selenium driver.I am able to open the image dialog but unable to fill in the textfield ...
1
vote
0answers
62 views
capybara and reloading iframe with javascript
so I have a rails app with an IFrame, and at some point I reload that IFrame via javascript and it's content changes.
So I'm trying to test that behavior with following code
sleep 3
...
0
votes
1answer
123 views
How to use DatabaseCleaner[:active_record].strategy = :transaction with selenium
I have written cucumber test cases and now i need to rollback database not the existing one. I have use selenium web-driver with capybara 2.0.2. When i have tried with:
...
1
vote
1answer
148 views
Resize Chrome's window while using Capybara
I use Capybara (with selenium) and Chrome, and RSpec. But i would like to change width of browser in some tests. What is the solution in this case?
spec/spec_helper.rb
ENV["RAILS_ENV"] ||= 'test'
...
0
votes
0answers
86 views
How can I run Selenium (rspec2/capybara) tests as if though dial up or mobile connection?
I'd like to run my test suite as if I were on a mobile or dial up connection. I'm using a rails stack with rspec2, selenium. Any advice?
2
votes
0answers
70 views
Capybara convert html tags to html entities written in javascript
I have some html tags written in javascript code and when running the code in browser it works fine but when the same code run with capybara then the html tags has been converted to html entities.
...
0
votes
1answer
146 views
Rails, RSpec, and Capyara/Selenium - how to use the Selenium click_at method to click on exact x,y coords?
I'm trying to test clicking on an exact coordinate in an HTML page using RSpec and Selenium in a Rails project. However, the documented Selenium click_at method appears to be unavailable through any ...
0
votes
2answers
172 views
How to prevent Firefox from starting in safe mode?
Running a Rails test suite with Selenium often opens Firefox with the "Start in Safe Mode?" dialog. Is there a way to either 1) disable this, or 2) add a script that will answer "No" if the dialog ...
5
votes
1answer
342 views
Upgrading capybara from 1.0.1 to 1.1.4 makes database_cleaner break my specs
I have an old Rails application upgraded to version 3.2.11 that has a lot of request specifications written using capybara version 1.0.1 and running using the selenium driver. The database are cleaned ...
0
votes
1answer
110 views
Selenium, examples of how to select links, some in TD's, some not?
What are some good examples of how to select links using Selenium?
Some of my links are in tables, others with LI's and others have ID tags.
What options do I have for selecting 'A' Anchor tags?
...
1
vote
2answers
146 views
include file ruby selenium
I have multiple ruby test cases for selenium-webdriver and all the files are sharing the same functions. is there any way to create a global file and include the file to these test cases instead of ...
2
votes
1answer
366 views
How to set Browser Window size in Rspec (Selenium)
I am working on Ruby On Rails integration test using capybara, Selenium.
How to set testing Browser Window Height and Width?
I searched, but nothing work well for me.
I tried following code.
...
15
votes
1answer
808 views
Capybara tests fail with Timeout::Error in the first test when using Google Maps
I am testing with RSpec + Capybara + Selenium (Firefox). No matter what subset of my acceptance tests I run, the first one fails (next tests do work correctly) with "reason" like this:
...
0
votes
1answer
96 views
Devise user creation fails during Capybara integration testing (and Selenium webdriver)
I'm trying to create a user during an integration test to use for some operations. I'm using devise with :confirmable. The code is the following:
user = User.create({username: "user1", password: ...
0
votes
0answers
38 views
How do I visit the mobile format web page using Capybara in my Rails integration tests?
In my Rails app, I'm using jQuery mobile to display different views to the user if he's visiting the site from a mobile device. I set the request format to :mobile whenever there is an "m" in the url. ...
0
votes
2answers
128 views
Truble with Cucumber and URI::InvalidURIError
I am trying to start my cucumber tests. I get the error:
bad URI (absolute but no path): http:// (URI::InvalidURIError)
/home/de..........:common.rb:146:in 'split'
/home/de..........:common.rb:211:in ...
-3
votes
1answer
132 views
How can I use cucumber/ruby to hover over an element in order to make it visible so I can click a link? [closed]
Page has products, when I hover over the image it shows the product quantity and buy now button. I want to click on quantity and buy now button after hover over.
...
0
votes
1answer
153 views
How to close all the windows before the next test in a test suite?
[7] pry(#<RSpec::Core::ExampleGroup::Nested_1>)> page.execute_script "window.close()"
Selenium::WebDriver::Error::NoSuchWindowError: Script execution failed. Script: window.close();
The ...
2
votes
2answers
402 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 ...
7
votes
1answer
402 views
Capybara visit gets stuck for no reason
We have a large cucumber suite for a rails project. It is all capybara and mostly goes via Firefox.
Recently we started to experience a failure, that I am struggling to get my head around. Here is ...
4
votes
1answer
357 views
Rails 3.1 Capybara jQuery is not defined
I keep on getting this error:
Failure/Error: page.evaluate_script('jQuery.active') == 0
Selenium::WebDriver::Error::JavascriptError:
ReferenceError: jQuery is not defined
whenever I use the ...
0
votes
0answers
146 views
Error while running a JavaScript test with Capybara and Cucumber (Errno::ECONNREFUSED)
So I've been using Cucumber to run integration tests on my Rails app for some time now. Recently, I had to write a test involving a page in my app which needs JavaScript in order to work properly. I ...
1
vote
0answers
180 views
Internal Server Error when testing javascript with cucumber-rails
I'm having a strange problem with the following cucumber test:
@javascript
Scenario: Successful sign out
Given there is the following user:
| id | 1 |
| email ...
0
votes
1answer
572 views
Rspec tests running in wrong environment?
I have an integraton test that is run using selenium. In my before each i build a few objects and index with solr. I can see the activity in my subnsspot solr test log. And then in my test I perform ...
0
votes
0answers
69 views
Coverage for my selenium test suite in ruby
How to find the coverage for selenium test suite in ruby, should I run the rails server under rcov? If so how?
I am using rails 3
I have installed rcov gem and tried rcov rails s
It creates a ...
7
votes
2answers
591 views
Capybara integration testing with asynchronous JavaScript
I have a Rails integration test that's failing, and I can't figure out why. I'm using Capybara with Selenium as the driver.
The test checks that page content has been removed after an AJAX call takes ...
0
votes
1answer
41 views
javacript code partially not executed in test environment, works in production, development (Rails 3 app)
Rails 3
I have a list inside a form:
<%= form_for @article do |f| %>
<ul>
<% @product.each do |p| %>
<li id="product_<%=p.id%>">
<div>
...
0
votes
1answer
141 views
Cucumber + Capybara + Selenium test failing while trying to select a hidden radiobutton
I'm trying to check a radiobutton for a form submitting in RoR, which works in development and production but not when I run an automated test with Cucumber using the @javascript tag. The view is ...
1
vote
1answer
158 views
can I run SimpleCov in webrick?
I have a rails app and a tester who is developing an external Selenium-based test system written in Java. We would like to know the current code-coverage of his test suite, so I would like to use ...
1
vote
1answer
318 views
Capybara-selenium fault and redirect example.com/ when without everything is green
When I run test with gem 'selenium-webdriver' (with "describe "with valid information", :js => true do")
spec/request/post_pages_spec.rb
require 'spec_helper'
describe "Post pages" do
subject ...
1
vote
1answer
115 views
Why I get blank pages when using selenium/webkit with capybara?
I'm trying to test my cucumber scenarios with capybara and selenium but I get blank pages all the time.
I read this: Capybara + RSpec only sees blank pages in controller specs. Why?
But It's not ...
1
vote
1answer
323 views
Selenium Web Driver for a Rails project
I am trying to set up Selenium for my Rails project and I want to use chrome as my browser. It currently works as open up firefox only. I have Capybara.register_driver :selenium_chrome do |app|
...
0
votes
1answer
600 views
Testing rails app with cucumber + capybara + selenium leads to blank pages
I'm trying to test a confirmation dialogue in javascript with cucumber 1.2.1, capybara 1.1.2 and selenium. Ruby is 1.9.3 and RoR is 3.2.6.
My features/env.rb is:
require 'cucumber/rails'
...
1
vote
2answers
188 views
Watir::Exception::NoValueFoundException: No option with :text, :label or :value in this select element
Watir Automation testing: I'm trying to select an option from a select box , but since the options in the select box are set dynamically I am not able to do it correctly.
Html looks like :
...
0
votes
1answer
70 views
Is Unicorn or Selenium issue?
An instance of Unicorn HTTP server runs on my server.
It loads some files in this directory :
~/apps/myapp/current/
This path is a symbolic link to the last release in this path :
...
3
votes
1answer
304 views
Using Capybara and Minitest to test JavaScript
Several variations of this question have been asked, and I've definitely learned from reading up on the topic, but most of the answers didn't seem to be directly applicable to this situation, or ...
1
vote
0answers
196 views
can Capybara use Selenium Iphone Driver?
I'm trying to run some test on an iphone emulator, i have the iWebdriver iphone emulator running on an ip address.
Is this possible as all the google results are about updating to user agent to make ...
2
votes
0answers
371 views
How can I use Selenium to hover over an element in order to make it visible so I can click a link?
There are many similar posts asking this question:
How to hover over (mouseover) an element in Selenium Ruby?
Selenium2 WebDriver Ruby => how click on a hidden link
Ruby Mouse Over is not long ...


