Goes to a website

Options:

OptionRequiredDescriptionExample
urltrue(string) URL of the page to load.https://twitter.com
cookiesfalse(object[]) Cookies to set before going to the page. Cookies will be set in the same domain.{
"name": "auth_token",
"value": "twitter-token-123",
"domain": ".twitter.com"
}
waitForSelectorfalse(string) Query selector of the element to wait till the element is appeared in the page.article[role='article']

Example 1:

{
  "action": "goto",
  "options": {
    "url": "https://twitter.com/papungag/status/1600099131971600384?s=20",
    "cookies": [
      {
        "name": "auth_token",
        "value": "$twitterAuthToken",
        "domain": ".twitter.com"
      }
    ],
    "waitForSelector": "article[role='article']"
  }
}