diff options
author | eug-vs <eug-vs@keemail.me> | 2020-11-14 17:41:39 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-11-14 17:41:39 +0300 |
commit | ecb98e114bc461f439386ed8d914e4617746570d (patch) | |
tree | bf052b6da50eb007d897c61fd7f09e9564c60598 /src/handlers/attendConference.js | |
parent | ae94313667b3abe257c0767439c6d3986ba0fde6 (diff) | |
download | bsu-fantom-ecb98e114bc461f439386ed8d914e4617746570d.tar.gz |
feat: attend conference on job
Diffstat (limited to 'src/handlers/attendConference.js')
-rw-r--r-- | src/handlers/attendConference.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/handlers/attendConference.js b/src/handlers/attendConference.js index 54d6479..8f5c53f 100644 --- a/src/handlers/attendConference.js +++ b/src/handlers/attendConference.js @@ -1,13 +1,14 @@ const { clickElementByXPath } = require('./utils.js'); -const CONFERENCE_DURATION = 1000 * 60 * 80; // 80 minutes +const CONFERENCE_DURATION = process.env.NODE_ENV === 'production' + ? 1000 * 60 * 80 // 80 minutes + : 5000; const attendConference = async (page, onJoin) => { // Join as "Listen only" await clickElementByXPath(page, '//span[contains(text(),"Listen only")]'); if (typeof(onJoin) === 'function') onJoin(); - console.log('Joined the conference'); // Wait 5 seconds await page.waitForTimeout(CONFERENCE_DURATION); |