Skip to content
Snippets Groups Projects
Unverified Commit 8ebc3005 authored by Varac's avatar Varac
Browse files

Wait 5s for first run wizard modal

parent d9fed067
No related branches found
No related tags found
No related merge requests found
......@@ -15,8 +15,6 @@ const assert = require('assert');
await openBrowser()
// await screencast.startScreencast('output.gif')
// Wait for manual screencast recording
// await waitFor(5000)
// Nextcloud
if (taikoTests.includes('nextcloud') || taikoTests === 'all') {
......@@ -31,7 +29,12 @@ const assert = require('assert');
await click('Log in')
// Close potential nextcloud modal
// Close potential nextcloud first run wizard modal
// https://github.com/nextcloud/firstrunwizard/issues/488
// Unfortunately, we need to sleep a while since I haven't found a
// good way that closes the modal *if* it pops up, since these
// tests should also work on subsequent logins.
await waitFor(5000)
await press('Escape')
// Open document and type some text
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment