Slide 16
Slide 16 text
Webdriver package
16
"/session/:sessionId/url": {
"GET": {
"command": "getUrl",
"description": "The Get Current URL command returns the URL of the current top-level browsing context.",
"ref": "https://w3c.github.io/webdriver/#dfn-get-current-url",
"parameters": []
},
"POST": {
"command": "navigateTo",
"description": "The navigateTo (go) command is used to cause the user agent to navigate the current ...",
"ref": "https://w3c.github.io/webdriver/#dfn-navigate-to",
"parameters": [{
"name": "url",
"type": "string",
"description": "string representing an absolute URL (beginning with http(s)), possibly including ...",
"required": true
}],
"returns": {
"type": "String",
"name": "url",
"description": "current document URL of the top-level browsing context."
}
}
},