Skip to content

Commit

Permalink
Increase minor version for new release
Browse files Browse the repository at this point in the history
 - allow find to find hidden elements as well
  • Loading branch information
jnormington committed Mar 15, 2016
1 parent 0bcf5e2 commit 6a5b770
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/dotdiff/element_handler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def js_element(xpath)

def element_exists?(xpath)
# TODO: Allow custom overriding beyond Capybara.default_max_wait_time
driver.find(:xpath, xpath, wait: 5) rescue nil
driver.find(:xpath, xpath, wait: 2, visible: :all) rescue nil
end

def elements
Expand Down
2 changes: 1 addition & 1 deletion lib/dotdiff/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module DotDiff
VERSION = "0.2.0"
VERSION = "0.3.1"
end

0 comments on commit 6a5b770

Please sign in to comment.