README.md in capybara-screenshot-diff-0.12.2 vs README.md in capybara-screenshot-diff-0.13.0

- old
+ new

@@ -301,10 +301,22 @@ ### Removing focus from the active element In Chrome the screenshot includes the blinking input cursor. This can make it impossible to get a -stable screenshot. To get around this you can set the `blur_active_element` option: +stable screenshot. To get around this you can set the `hide caret` option: + +```ruby +Capybara::Screenshot.hide_caret = true +``` + +This will make the cursor (caret) transparent (invisible), so the blinking does not delay the screen shot. + + + +### Removing focus from the active element + +Another way to avoid the cursor blinking is to set the `blur_active_element` option: ```ruby Capybara::Screenshot.blur_active_element = true ```