Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.46 KB

File metadata and controls

33 lines (24 loc) · 1.46 KB

BrowserLinksRequest

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]
visible_links_only bool Only return links visible in the rendered viewport. [optional]
exclude_external_links bool Drop links that point to a different domain than the page. [optional]

Example

from unifapi.models.browser_links_request import BrowserLinksRequest

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

# convert the object into a dict
browser_links_request_dict = browser_links_request_instance.to_dict()
# create an instance of BrowserLinksRequest from a dict
browser_links_request_from_dict = BrowserLinksRequest.from_dict(browser_links_request_dict)

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