I really love to use the shortcuts CTRL+Alt+ Arrow Left and CTRL+Alt+ Arrow Right to navigate through the...
The method cookies is defined in the ActionController and should never be overwritten. Bad example class StaticPagesController < ApplicationController
You can throttle the network in your headless chrome via Selenium. This might be useful for debugging issues with flaky...
...cannot detect whether a browser will do something useful with a tel: link. Your best options seem to be: Don't have tel: links and rely on the mobile browsers...
If Sunspot does not work and fails with a backtrace similar to this: /project/shared/bundle/ruby/1.8/gems/rsolr-1.0.6/lib/rsolr/client.rb:227:in `adapt_response' /project/shared/bundle/ruby/1.8/gems/rsolr-1.0.6/lib/rsolr/client.rb:164...
Spreewald now comes with a step that tests if a form field is visible: Then the "Due date" field should...
XPath matchers can be combined with CSS-selector matchers. This is really useful if not, for example, the content of...
SitePrism gives you a simple, clean and semantic DSL for describing your site using the Page Object Model pattern, for...
We had the issue, that a VCR spec failed, after updating CarrierWave from version 0.11.0 to 1.3.2. In this version...
If you need a gem for a certain purpose, be sure to check this site. The rankings are determined by...
6.0.0 2021-06-02 Compatible changes geordi commit will continue even if one of the given projects is inaccessible. It...
Bourbon is a library of pure Sass mixins that are designed to be simple and easy to use. No configuration...
Modern cameras often produce JPEGs that have a "I should be rotated 90° to the left" flag. If you process...
Table Of Contents Flexbox wrapping Spacing Long content Prevent an image from being stretched or compressed Lock scroll chaining
It sometimes happen that a database dump, that would want to insert into your development database, does not match the...
...on a string that was previously marked as #html_safe will lead to unexpected behavior. E. g. backreferences to captured groups ($1, $2) will be nil even if the group...
...be safe after using gsub on them. You can, however, fix the $1 gsub behavior on html_safe strings...
The linked article states that CSS breakpoints should group "similar" screen sizes and thus be at: 600px "narrow"
In rare cases you might need something like form_for (for using form builder methods on the resulting block element...
x = "Universe" <<-'MESSAGE' Hello #{x} MESSAGE # => "Hello #{x}" That will make the string behave like a single-quoted string, so sequences like \n will be used as they are...
Instead of showing you two lines for each change, Git allows you to highlight changes in a line explicitly:
tl;dr: Upgrade the gem to at least 4.0.1 When you use rspec_rails in a version < 4 with Rails...
...thing to do with any new U2410 should be to disable the incredibly annoying beep when pressing any monitor button. Here is the fastest way to achieve that:
...Sound”; the “Power Save Audio” entry is usually grayed out, so this is 1 beep less than from above.) Right Down Tick Do it this way or your colleagues will...
There is a bug in ActiveRecord 2.3.x that leads to changes in nested forms getting lost. class Project < ActiveRecord...
There is a kind of features in web applications that hinder automated integration tests. Examples include cookie consent banners or...