Check if HTML elements are in view.
JS Utility that triggers an event when an HTML element is scrolled in to the viewport.
Related cards:
Capybara, Selenium and VCR playing together nicely
When using capybara (for request specs) together with vcr while trying to run with selenium throws the following error:
VCR::Errors::UnhandledHTTPRequestError:
=============================================================...
Install Nokogori on OSX Mountain Lio
Follow the nokogiri installation instructions at http://nokogiri.org/tutorials/installing_nokogiri.html
If you run into compiler issues you may have to link the gcc compiler manually by
sudo ln -s /usr/bin/gcc /usr/bin/gcc-4.2
How to use cucumber together with Sublime Text 2 Editor
Sublime Text 2 doesn't have out of the box support for cucumber and package control doesn't provide anything.
Adding support to run tests from within sublime text 2: [RubyText Package](https://...
Remove Trailing Spaces on Save in Sublime Text 2
Ever wondered how to get rid of the trailing spaces?
just add this to your user settings ( cmd + , ):
"trim_trailing_white_space_on_save": true
And every time you save a file Sublime will trim all the trailing spaces for you.
If you hav...