Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 647 Bytes

File metadata and controls

22 lines (16 loc) · 647 Bytes

Unifapi::BrowserHtmlRequest

Properties

Name Type Description Notes
url String Absolute http(s) URL of the page to render.
wait_until String When navigation is considered complete. `networkidle0` waits for the network to go idle (best for JavaScript-heavy pages); `load` is fastest. [optional]
timeout_ms Integer Navigation timeout in milliseconds (1000–60000). [optional]

Example

require 'unifapi'

instance = Unifapi::BrowserHtmlRequest.new(
  url: null,
  wait_until: null,
  timeout_ms: null
)