Make e2e tests more stabilized
This commit is contained in:
parent
e7ed84f757
commit
7eca11e556
1 changed files with 6 additions and 4 deletions
|
@ -71,10 +71,12 @@ describe("tab test", () => {
|
||||||
let body = await session.findElementByCSS('body');
|
let body = await session.findElementByCSS('body');
|
||||||
await body.sendKeys(Key.Shift, 'D');
|
await body.sendKeys(Key.Shift, 'D');
|
||||||
|
|
||||||
let current = await browser.tabs.query({ windowId: win.id });
|
await eventually(async() => {
|
||||||
assert(current.length === tabs.length - 1);
|
let current = await browser.tabs.query({ windowId: win.id });
|
||||||
assert(current[2].active);
|
assert(current.length === tabs.length - 1);
|
||||||
assert(current[2].url === tabs[2].url);
|
assert(current[2].active);
|
||||||
|
assert(current[2].url === tabs[2].url);
|
||||||
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
it('deletes all tabs to the right by x$', async () => {
|
it('deletes all tabs to the right by x$', async () => {
|
||||||
|
|
Reference in a new issue