jeffrafter-crocodile 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/crocodile.gemspec +1 -1
- data/lib/crocodile.rb +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.1
|
data/crocodile.gemspec
CHANGED
data/lib/crocodile.rb
CHANGED
@@ -31,7 +31,7 @@ class Crocodile
|
|
31
31
|
browser.open url
|
32
32
|
browser.get_eval "window.resizeTo(#{options[:width]},#{options[:height]});" if (options[:width] && options[:height])
|
33
33
|
yield browser if block
|
34
|
-
browser.capture_entire_page_screenshot File.join(File.expand_path('.'), dest),
|
34
|
+
browser.capture_entire_page_screenshot File.join(File.expand_path('.'), dest), :wait_for => :page
|
35
35
|
browser.close_current_browser_session
|
36
36
|
ensure
|
37
37
|
stop if options[:stop]
|