| 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] |
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]