Current Dev State

This commit is contained in:
Tim Lorsbach
2025-06-23 20:13:54 +02:00
parent b4f9bb277d
commit ded50edaa2
22617 changed files with 4345095 additions and 174 deletions

View File

@ -0,0 +1,23 @@
/**
*
* The Fullscreen Window command invokes the window manager-specific “full screen” operation,
* if any, on the window containing the current top-level browsing context. This typically
* increases the window to the size of the physical display and can hide browser UI elements
* such as toolbars.
*
* Note: this command was recently added to the official Webdriver protocol and might not be
* working with current Selenium driver.
*
* @see https://w3c.github.io/webdriver/webdriver-spec.html#dfn-fullscreen-window
* @type protocol
*
*/
let windowHandleFullscreen = function () {
return this.requestHandler.create({
path: '/session/:sessionId/window/fullscreen',
method: 'POST'
})
}
export default windowHandleFullscreen