This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>WEBP images </title> | |
<script type="text/javascript"> | |
function getDimensions() { | |
let width = window.innerWidth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let puppeteer = require('puppeteer') | |
let cheerio = require('cheerio') | |
const EMAIL_SELECTOR = '#username'; | |
const PASSWORD_SELECTOR = '#password'; | |
const SUBMIT_SELECTOR = '#app__container > main > div > form > div.login__form_action_container > button'; | |
const LINKEDIN_LOGIN_URL = 'https://www.linkedin.com/login?fromSignIn=true&trk=guest_homepage-basic_nav-header-signin'; | |
if (process.argv[2] !== undefined) { | |
(() => { |