Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pass browser parameter to Watir

I am using Ruby and am using the latest gem version of Watir. I plan to use headless browser such as PhantomJS. How can one pass paramater to the Phantom JS browser when it get executed.

My purpose is so that Phantom JS do not need to load images.

like image 476
user3551335 Avatar asked Dec 26 '22 06:12

user3551335


1 Answers

As described on the PhantomJS command line page, there is an option to control the loading of images:

--load-images=[true|false] load all inlined images (default is true). Also accepted: [yes|no].

During the initialization of a Watir::Browser, these settings can be specified, as an array, in the :args key. For example:

args = %w{--load-images=false}
browser = Watir::Browser.new(:phantomjs, :args => args)

A working example:

require 'watir-webdriver'

# Capture screenshot with --load-images=true
browser = Watir::Browser.new(:phantomjs)
browser.goto 'https://www.google.com'
browser.screenshot.save('phantomjs_with_images.png')

# Capture screenshot with --load-images=false
args = %w{--load-images=false}
browser = Watir::Browser.new(:phantomjs, :args => args)
browser.goto 'https://www.google.com'
browser.screenshot.save('phantomjs_without_images.png')

Which gives the screenshot with images loaded:

phantomjs_with_images.png

And the screenshot without images loaded:

phantomjs_without_images.png'

Notice that the Google image of the page is not loaded in the second screenshot (as expected since load-images was set to false).

like image 99
Justin Ko Avatar answered Jan 11 '23 23:01

Justin Ko