Since Testplane is based on WebdriverIO v8, all the commands provided by WebdriverIO are available in it. But Testplane also has her own commands.
Browser command that clears session state (deletes cookies, clears local and session storages). For example:
it('test', async ({ browser }) => {
await browser.url('https://github.com/gemini-testing/testplane');
(await browser.getCookies()).length; // 5
await browser.execute(() => localStorage.length); // 2
await browser.execute(() => sessionStorage.length); // 1
await browser.clearSession();
(await browser.getCookies()).length; // 0
await browser.execute(() => localStorage.length); // 0
await browser.execute(() => sessionStorage.length); // 0
});
This command is temporary and will be removed in the next major (
testplane@1
). Differs from the standard moveTo in that it moves the cursor relative to the top-left corner of the element (like it was inhermione@7
).
Move the mouse by an offset of the specified element. If offset is not specified then mouse will be moved to the top-left corder of the element.
Usage:
await browser.$(selector).moveCursorTo({ xOffset, yOffset });
Available parameters:
- xOffset (optional)
Number
– X offset to move to, relative to the top-left corner of the element; - yOffset (optional)
Number
– Y offset to move to, relative to the top-left corner of the element.