increase dialog timeout a bit

pull/21833/head
Bruno Windels 2019-04-16 11:09:34 +02:00
parent b01e126433
commit f489f55fd7
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ async function acceptDialog(session, expectedTitle) {
async function acceptDialogMaybe(session, expectedTitle) { async function acceptDialogMaybe(session, expectedTitle) {
let primaryButton = null; let primaryButton = null;
try { try {
primaryButton = await session.waitAndQuery(".mx_Dialog .mx_Dialog_primary", 50); primaryButton = await session.waitAndQuery(".mx_Dialog .mx_Dialog_primary", 100);
} catch(err) { } catch(err) {
return false; return false;
} }