capybara-webkit Questions
4
Solved
I want to use qt5's QtWebKit with capybara-webkit.
brew uninstall qt
Uninstalling /usr/local/Cellar/qt/4.8.4...
brew install qt5
This formula is keg-only: so it was not symlinked into /usr/local...
Physic asked 12/6, 2013 at 21:7
2
Solved
I'm improving my tests with RSpec and capybara-webkit, trying to delete all the css and xpath selectors like
find('#edit_user > div:nth-child(7) > div > div > button').click
and I'm ...
Alaynaalayne asked 4/12, 2015 at 16:31
1
Solved
I am using Capybara-Webkit to automate some work on a website.
This is done in the background in a Resque task. After some executions there are quiet a lot webkit_server processes, that weren't clo...
Homologate asked 8/11, 2012 at 11:49
2
Solved
Latest Capybara-webkit throws a deprecation warning:
WARNING: The next major version of capybara-webkit will require at least version 5.0 of Qt. You're using version 4.8.7.
So I:
gem uninstall ...
Outthink asked 31/7, 2015 at 0:23
3
I am currently trying to install Capybara-Webkit on a rails 3.2 app. Everytime I try to install the gem I get the following output. I am on Debian unstable.
ERROR: Error installing capybara-webkit...
Haunch asked 3/7, 2013 at 3:20
2
I'm using capybara webkit on Ubuntu (14.04 LTS) and I'm getting the following error when trying to use it:
Capybara::Webkit::ConnectionError: /srv/www/app/shared/bundle/ruby/2.1.0/gems/capybara-w...
Smog asked 26/11, 2014 at 12:16
2
Sometimes my specs can just hang and I have to kill the corresponding ruby process. It's quite common when I run integration specs written with capybara and webkit driver.
Is it possible to inspec...
Bharat asked 15/11, 2012 at 21:17
4
My Rspec + Capybara integration tests were working fine until I started trying to interact with Javascript-dependent interface elements using Capybara-Webkit.
When I try to use Capybara-Webkit, I ...
Crossways asked 18/12, 2012 at 23:54
2
Solved
I am trying to install capybara-webkit on ubuntu 12.04, but I get this error:
$ gem install capybara-webkit -v '1.0.0'
Building native extensions. This could take a while...
ERROR: Error installin...
Goutweed asked 2/2, 2014 at 18:57
4
Solved
I'm trying to write a request spec for a web page.
This page works in development without error.
But running in capybara webkit I get this error after trying to submit the form:
Failure/Error...
Monteux asked 1/8, 2012 at 10:15
2
Solved
When I test my website using capybara-webkit and I take a screenshot, @font-face declarations in CSS are ignored.
This is especially bad because I am using FontAwesome, so there will be major dif...
Fibrovascular asked 13/2, 2013 at 22:11
4
I've been running my tests via the terminal for a while now without any problems.:
cucumber Create\ New\ Game.feature
Which contains the following:
Feature: Create New Game
Background:
Given...
Mckenziemckeon asked 15/1, 2015 at 9:16
4
Solved
I'm trying to pass this spec :
scenario "Edit a service", js: true do
service = create_service_for(provider, title: "First service")
fill_edit_service_form(service)
expect(page).to have_css('#p...
Trangtranquada asked 20/2, 2014 at 23:32
1
Solved
I'm looking to test the text in an alert dialog using Capybara Webkit. I'm aware of the accept_js_confirms and reject_js_confirms methods, but I'm looking to evaluate the contents of the dialog pri...
Almanza asked 9/12, 2014 at 16:35
4
Solved
I've got some problems running capybara-webkit with the Headless gem, Xvfb and our ci server. We use this setup for automatic integration testing and javascript testing of our Ruby on Rails 3.2 app...
Pylos asked 12/7, 2012 at 9:27
4
I have feature like this:
Feature: Searching chats
In order to find chats
As an user
I want to find different chats by username or ad name
Background:
Given System prepares for chats
And There ...
Camfort asked 4/2, 2014 at 10:57
1
Solved
I'm using RSpec/Capybara for Rails app testing and I need to check that one element in the view appears once and only once.
For example, in the following code, i need to make sure that task.title ...
Upset asked 24/6, 2014 at 17:45
3
Solved
In my site I have this list:
<ul class="test">
<li class="social_1"></li>
<li class="social_2"></li>
<li class="social_3"></li>
<li class="social_...
Claudiaclaudian asked 10/6, 2014 at 9:38
2
Solved
I'm using rails 4.0.5, rspec 2.14.1, capybara 2.2.1, capybara-webkit 1.1.0 and database_cleaner 1.2.0. I'm seeing some weird behavior with the following feature test (which simulates a user viewing...
Douzepers asked 9/5, 2014 at 0:32
6
I am using capybara to click a checkbox, however it can't seem to find it no matter what I do. I am able to correctly find both the span and the label inside the span, but not the input I actually ...
Saddlebacked asked 9/1, 2014 at 23:43
3
I am having a problem where an instance of webkit_server with Capybara and capybara-webkit running headless connected to a local Xvfb screen hangs when visiting a URL. It seems to happen after seve...
Invective asked 4/3, 2012 at 21:1
2
Solved
How can i click a link using capybara.I need to click the graduation link
<a href="/arts?Occasion=Graduation&amp;top_menu_item_title=+-+Graduation">Graduation</a>
I used followin...
Canonicate asked 31/7, 2013 at 6:14
1
I'm trying to build capybara-webkit on XP. I follow this instruction. I says:
8) Clone latest version of capybara-webkit from Github:
$ git clone git://github.com/thoughtbot/capybara-webkit.git
...
Furore asked 4/7, 2013 at 12:19
2
Solved
Capybara::FrozenInTime error in integration specs using Rspec + Timecop + Capybara + Capybara Webkit
I'm seeing an error in some integration specs, using rspec, capybara, capybara-webkit and timecop.
Capybara::FrozenInTime:
time appears to be frozen, Capybara does not work with libraries which f...
Highchair asked 21/8, 2012 at 19:8
2
Solved
I am using Cucumber to write my integration tests and Database Cleaner to keep my db clean. Everything perfectly works as my tests don't require Javascript.
I can make these last tests pass using ...
Dortch asked 11/4, 2013 at 9:33
© 2022 - 2024 — McMap. All rights reserved.