Merge pull request #22 from atefBB/patch-1

format
This commit is contained in:
Vladimir Carrer 2018-12-10 12:34:01 +01:00 committed by GitHub
commit eb1dfc8f21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -28,7 +28,6 @@ console.log(program.url);
console.log(program.fullPage); console.log(program.fullPage);
(async () => { (async () => {
try { try {
await execute(); await execute();
} catch(e) { } catch(e) {
@ -50,6 +49,7 @@ console.log(program.fullPage);
await page.emulate(devices[program.emulate]); await page.emulate(devices[program.emulate]);
else else
program.emulate = ''; program.emulate = '';
if (program.auth) { if (program.auth) {
const [username, password] = program.auth.split(';'); const [username, password] = program.auth.split(';');
await page.authenticate({ username, password }); await page.authenticate({ username, password });
@ -68,5 +68,4 @@ console.log(program.fullPage);
console.log(title); console.log(title);
await browser.close(); await browser.close();
} }
})() })()