We've come up with test specs for Dave Haeffner's The-Internet. We've set up a Ruby environment to run the tests, and configured Chrome to open the Login page.
With this entry, we will be activating Chrome in Headless Mode, i.e. running Chrome but without a visual interface, allowing the tests to run faster.
About Headless Chrome
According to Eric Bidelman's article, Getting Started with Headless Chrome, the new option of running Chrome in Headless mode started with Google Chrome version 59, released in May 2017.
Before, you had to use something such as PhantomJS to emulate the Chrome browser if you wanted to run Chrome in a place where the processing power to bring up a visual window would be a waste, such as running it with an automated test script running in a continuous integration environment. Now, it is built right in.
"Headless Chrome is shipping in Chrome 59. It's a way to run the Chrome browser in a headless environment. Essentially, running Chrome without chrome! It brings all modern web platform features provided by Chromium and the Blink rendering engine to the command line.
"Why is that useful? A headless browser is a great tool for automated testing and server environments where you don't need a visible UI shell. For example, you may want to run some tests against a real web page, create a PDF of it, or just inspect how the browser renders an URL".
The power of Headless Chrome and browser automation (Google I/O '18)
https://youtu.be/lhZOFUY1weo
There are a few command line interface commands from this article that we can incorporate when registering the Chrome driver:
- Command to run Chrome in Headless Mode: --headless
- Needed when running on Windows: --disable-gpu
- Aren't setting up a specific Chrome user? --no-sandbox
If you launch a Docker container, by default, the /dev/shm partition will be 64 MB in size, too small to load. Let's add this to the spec_helper file.
Let's create a constant in Ruby to indicate if we want Headless mode on or off.
How do we know we are in headless mode or not when running the test? Let's output it to the screen:
- HEADLESS_MODE = true
- puts "CHROME_DRIVER: Headless mode == #{HEADLESS_MODE}"
Ruby allows you to take a String and embed the value of a variable in it by using the hashtag and surrounding the variable with curly braces.
Move Headless Value to Gauge Properties
Gauge allows you to switch up environment properties for your Gauge project.Let's say you want to have the tests run on your default environment (env/default) in your ruby.properties file:
- Need visual aids for debugging? Set HEADLESS = false
- Don't need visual aids for debugging? Set HEADLESS = true
In our spec_helper file, we declare a constant, HEADLESS_MODE, and setting it to the environment variable we created:
HEADLESS_MODE = ENV['HEADLESS']
spec_helper.rb
require 'bundler'
require 'capybara/dsl'
require 'capybara/rspec'
Bundler.setup(:default)
Bundler.require
HEADLESS_MODE = ENV['HEADLESS']
module DRIVER
include RSpec::Matchers
include Capybara::DSL
end
TIMEOUT = 20
Capybara.default_driver = :chrome
Capybara.current_driver = :chrome
Capybara.javascript_driver = :chrome
before_suite do
Capybara.register_driver(:chrome) do |app|
options = Selenium::WebDriver::Chrome::Options.new
options.add_argument('--window-size=1240,1400')
puts "CHROME_DRIVER: Headless mode == #{HEADLESS_MODE}"
if HEADLESS_MODE == true
options.add_argument('--headless')
options.add_argument('--disable-gpu')
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')
end
Capybara::Selenium::Driver.new(app,
browser: :chrome,
options: options)
end
Capybara.configure do |config|
config.default_max_wait_time = timeout
config.ignore_hidden_elements = true
end
end
Gauge.configure do |config|
config.include DRIVER
config.screengrabber = -> {
Capybara.page.save_screenshot('/tmp/screenshot.png')
return File.binread('/tmp/screenshot.png')
}
end
Copying and pasting the default.properties to a new local directory in the env folder, and adding on HEADLESS = false, we get:
env/default/default.properies
gauge_reports_dir = reports
overwrite_reports = true
screenshot_on_failure = true
logs_directory = logs
enable_multithreading = false
gauge_clear_state_level = scenario
gauge_specs_dir = specs
csv_delimiter = ,
allow_multiline_step = false
env/default/ruby.properties
# sample_key = sample_value
HEADLESS = false
Running the Headless Tests
Want to run the tests pulling the environment variables of the local environment, where tests are being run in Chrome regularly, where HEADLESS = false?- bundle exec gauge run specs/Navigation.spec -v
Change that HEADLESS = true in the ruby.properties file.
Next, we will revisit the Authorization test scenarios we came up with when analyzing The-Internet.
Happy Testing!
Basic Capybara-Gauge:
- Part One: Analyzing The-Internet
- Part Two: Setup Ruby Environment
- Part Three: Setup Capybara to Test Opening Chrome
- Part Four: Add Option For Chrome Headless
- Part Five: Add Test Steps and Spec Implementations
- Part Six: Setup Chrome and ChromeDriver Logging
- Part Seven: Rubocop Code Review
- Source Code: https://github.com/tjmaher/capybara-gauge
-T.J. Maher
Sr. QA Engineer, Software Engineer in Test
Meetup Organizer, Ministry of Testing - Boston
Twitter | YouTube | LinkedIn | Articles
7 comments:
Smart LED strip lights are an affordable and easy way to get LEDs for your home. If you're wondering what smart lighting is, why you should use it, or which smart strips you should get then read this post.
The most exciting and reflective thing is that Headless Chrome is shipping in Chrome 59. It's a way to run the Chrome browser in a headless environment. Which is so perfectly given by them but also gets the most featuring CIPD Assignments from them so easily throughout the UK effectively.
Now we need to configure the environment to run the tests without opening Chrome, which is where Headless Chrome comes in. Setting up Headless Chrome requires Capybara-Gauge. It could be a bit tricky and time-consuming, but there are many services that can help you with it. For example, you could buy an essay online about the use of Capybara-Gauge with Headless Chrome, which can provide useful insights and guidance on the setup process.
Setting up Headless Chrome is pivotal for SaaS App Development Company looking to enhance their web scraping, automation, and testing capabilities. Headless Chrome offers the power of the Chrome browser without the graphical user interface, enabling developers to perform automated tasks efficiently and seamlessly. By leveraging the capabilities of Headless Chrome, SaaS app development companies can improve their development and testing workflows, saving time and resources. Incorporating Headless Chrome into the development process empowers SaaS app development companies to deliver high-quality, reliable, and user-friendly applications to their clients while streamlining their internal development processes.
Nice blog < a href = "https//www.Embeddedhash.in">embedded systems <\a>
Perth's students, if you're in need of assignment help Perth, consider exploring the benefits of professional assistance. I found a service that values customer satisfaction, ensuring my academic needs are met consistently.
I've just set up Headless Chrome with Basic Capybara-Gauge for my latest project, and it was a smooth experience. As a tech enthusiast, I appreciate tools that streamline testing, much like how I value quality tech products from a trusted apple distributor in dubai. This setup has definitely made my work more efficient!
Post a Comment