Skip to content

Instantly share code, notes, and snippets.

View kerv94's full-sized avatar
💭
emulating PS4 "attempt"here goes nothing !!!

kerv94

💭
emulating PS4 "attempt"here goes nothing !!!
View GitHub Profile
@gilzonme
gilzonme / index.js
Created November 15, 2020 04:31
Google Search Iron Man Simple Automation Script
const puppeteer = require('puppeteer'); // Install puppeteer from https://www.npmjs.com/package/puppeteer
(async () => {
const browser = await puppeteer.launch({headless:false, // `true` if you want to run in headless mode and hidden
defaultViewport:{
width: 1080, // adjust as required
height: 720 // adjust as required
}});
const page = await browser.newPage();
await page.goto('https://google.com');