Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

File metadata and controls

31 lines (22 loc) · 1.24 KB

BrowserHtmlRequest

Properties

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

Example

from unifapi.models.browser_html_request import BrowserHtmlRequest

# TODO update the JSON string below
json = "{}"
# create an instance of BrowserHtmlRequest from a JSON string
browser_html_request_instance = BrowserHtmlRequest.from_json(json)
# print the JSON string representation of the object
print(BrowserHtmlRequest.to_json())

# convert the object into a dict
browser_html_request_dict = browser_html_request_instance.to_dict()
# create an instance of BrowserHtmlRequest from a dict
browser_html_request_from_dict = BrowserHtmlRequest.from_dict(browser_html_request_dict)

[Back to Model list] [Back to API list] [Back to README]