Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 815 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 815 Bytes

rammus

Build Status Coverage Status

Rammus is a Ruby library which provides a high-level API to control Chrome or Chromium over the DevTools Protocol. Rammus runs headless by default, but can be configured to run full (non-headless) Chrome or Chromium.

Usage

require 'rammus'

browser = Rammus.launch
page = browser.new_page
page.goto('https://example.com').await
page.screenshot path: 'example.png'

browser.close