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,24 @@
/**
* Change focus to another frame on the page. If the frame id is null,
* the server should switch to the page's default content.
*
* <example>
:frame.js
it('should switch focus to iFrame', function () {
// Using `element` to find an iframe and providing it to `frame` method
browser.waitForExist('iframe[name="my_iframe"]');
var my_frame = $('iframe[name="my_iframe"]').value;
browser.frame(my_frame);
});
* </example>
*
* @param {String|Number|null|WebElementJSONObject} id Identifier for the frame to change focus to.
*
* @see https://w3c.github.io/webdriver/webdriver-spec.html#switch-to-frame
* @type protocol
*
*/
export default function frame (frameId = null) {
return this.requestHandler.create('/session/:sessionId/frame', { id: frameId })
}