Use longer timeout for outgoing messages

This commit is contained in:
Andrew Ferrazzutti 2021-07-07 01:25:56 -04:00
parent 20ec4f92fa
commit f4bd0ca1c9
1 changed files with 2 additions and 2 deletions

View File

@ -781,7 +781,7 @@ export default class MessagesPuppeteer {
await this._syncChat(chatID)
// TODO Initiate the promise in the content script
await this.page.evaluate(
() => window.__mautrixController.promiseOwnMessage(5000, "time"))
() => window.__mautrixController.promiseOwnMessage(15000, "time"))
const input = await this.page.$("#_chat_room_input")
await this._interactWithPage(async () => {
@ -811,7 +811,7 @@ export default class MessagesPuppeteer {
await this._syncChat(chatID)
await this.page.evaluate(
() => window.__mautrixController.promiseOwnMessage(
10000, // Use longer timeout for file uploads
30000, // Use longer timeout for file uploads
"#_chat_message_success_menu",
"#_chat_message_fail_menu"))