-
Notifications
You must be signed in to change notification settings - Fork 28
Description
Hello,
I try connecting the BigBlueBot to the Chat.
This is the error message that i get
INFO 2021-08-10T17:10:41.059Z Bots: 1
INFO 2021-08-10T17:10:41.060Z Life: 60 seconds
INFO 2021-08-10T17:10:41.060Z Creating meeting
INFO 2021-08-10T17:10:41.238Z Fetching en_GB locale
INFO 2021-08-10T17:10:43.522Z Maryam Dietrich: join https://bbb.gerwinski.de at random-5840966
INFO 2021-08-10T17:10:48.208Z Maryam Dietrich: perform audio modal close
PASS 2021-08-10T17:10:50.231Z Maryam Dietrich: audio modal close
INFO 2021-08-10T17:10:51.232Z Maryam Dietrich: perform main panel open
FAIL 2021-08-10T17:10:55.271Z Maryam Dietrich: main panel open
INFO 2021-08-10T17:10:56.272Z Maryam Dietrich: perform chat open
ERROR 2021-08-10T17:11:56.273Z { TimeoutError: waiting for selector[aria-label^="Public Chat"]failed: timeout 60000ms exceeded
at new WaitTask (/home/mark/Bunker/WebDev/BigBlueBot/node_modules/puppeteer/lib/cjs/puppeteer/common/DOMWorld.js:509:34)
at DOMWorld.waitForSelectorInPage (/home/mark/Bunker/WebDev/BigBlueBot/node_modules/puppeteer/lib/cjs/puppeteer/common/DOMWorld.js:420:26)
at Object.internalHandler.waitFor (/home/mark/Bunker/WebDev/BigBlueBot/node_modules/puppeteer/lib/cjs/puppeteer/common/QueryHandler.js:31:77)
at DOMWorld.waitForSelector (/home/mark/Bunker/WebDev/BigBlueBot/node_modules/puppeteer/lib/cjs/puppeteer/common/DOMWorld.js:313:29)
at Frame.waitForSelector (/home/mark/Bunker/WebDev/BigBlueBot/node_modules/puppeteer/lib/cjs/puppeteer/common/FrameManager.js:841:51)
at Page.waitForSelector (/home/mark/Bunker/WebDev/BigBlueBot/node_modules/puppeteer/lib/cjs/puppeteer/common/Page.js:1280:33)
at Object.click (/home/mark/Bunker/WebDev/BigBlueBot/node_modules/bigbluebot/lib/util.js:78:16)
at Object.execute (/home/mark/Bunker/WebDev/BigBlueBot/node_modules/bigbluebot/lib/action/chat.js:19:41)
at perform (/home/mark/Bunker/WebDev/BigBlueBot/node_modules/bigbluebot/lib/action/perform.js:37:18) name: 'TimeoutError' }
This is the code I tried
const bigbluebot = require('bigbluebot');
const options = {
host: '',
secret: '',
version: '2.3',
room: 'random-5840966',
password:{
moderator:'',
attendee: ''
}
};
const action = async page => {
await bigbluebot.chat.send(page);
};
bigbluebot.run(action, options);
Thanks in advance
Regards
Mark