简体   繁体   中英

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.

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).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM