Hi Titus and Sam

This worked like a charm. Such a very usefull gem. Thanks a ton.
I just prepared a wiki for my project. Pasting here in case if this helps.

*For capturing full screen images*

Use gem https://github.com/samnissen/watir-screenshot-stitch
Include in Gemfile

gem 'watir-screenshot-stitch'
gem "mini_magick"
Run bundle installInstall "ImageMagick" exe on host machine

The host machine should have "ImageMagick" intsalled

The windows exe can be downloaded from 
https://www.imagemagick.org/download/binaries/

Recommeneded:- ImageMagick-6.9.10-11-Q8-x64-dll
Verify Installation

Select “Command Prompt” from the Windows Start menu. Within the window type

convert logo: logo.miff
imdisplay logo.miff

and the ImageMagick logo should be displayed in a window. 
Usage

browser = Watir::Browser.new :chrome, options: {args: args}

opts = {:page_height_limit => 5000}

screenshot_path =  "#{scenario_name}" + "_failure_" + time

@browser.screenshot.save_stitch(screenshot_path, browser, opts)


On Thursday, 20 September 2018 21:14:17 UTC+10, NaviHan wrote:
>
> Hi 
>
> I have put this code in the hooks which takes scresnshot when a test 
> fails. The issue is that Im not getting the full browser screen. Its chops 
> off at the bottom
>
> After do |scenario|
>  take_screenshot(@browser, scenario)
> end
>
>
> def take_screenshot(browser, scenario)
>   time = Time.now.strftime("%Y-%m-%d_%H%M")
>   if scenario.failed?
>     scenario_name = scenario.name.gsub(/[^\w\-]/, ' ')
>     screenshot_path =  "#{scenario_name}" + "_failure_" + time
>     @browser.screenshot.save("./screenshots/#{screenshot_path}.png")
>   end
> end
>
>
> By the way my before hooks looks like this.
>
> Before do|scenario|
>         ENV['HTTP_PROXY'] = ENV['http_proxy'] = nil
>         @browser.goto "https://www.sandbox.paypal.com";
>         @browser.cookies.clear
>         @browser.goto "https://portal-sandbox.afterpay.com";
>         @browser.cookies.clear
>         @browser.goto "https://i-pay.co.za";
>         @browser.cookies.clear
>         @browser.goto("ci.XXX.com/")
>         @browser.window.maximize
>         @browser.driver.manage.timeouts.implicit_wait = 0
>         @browser.cookies.clear
>         @browser.driver.manage.window.maximize
>         PageObject.default_element_wait=(10)
>         PageObject.javascript_framework = :jquery
> end #before scenario
>
>
>
>

-- 
-- 
Before posting, please read 
https://github.com/watir/watir_meta/wiki/Guidelines-for-Posting-to-Watir-General-Google-Group.
 
In short: search before you ask, be nice.

[email protected]
http://groups.google.com/group/watir-general
[email protected]
--- 
You received this message because you are subscribed to the Google Groups 
"Watir General" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to