This file contains hidden or 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 htlm> | |
<html lang="en"> | |
<body> | |
<qrvey-end-user settings="EUsetting"></qrvey-end-user> | |
<script type="text/javascript" src="https://d2be0q12jo392d.cloudfront.net/widgets-launcher/app.js"></script> | |
<script src="https://cdn.qrvey.com/end-user-run/runEndUser_v4.js"></script> | |
</body> | |
</html> |
This file contains hidden or 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
name | warehouse_id | |
---|---|---|
A | 1 | |
B | 2 | |
C | 3 | |
D | 4 |
This file contains hidden or 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
const puppeteer = require('puppeteer'); | |
async function posts () { | |
const browser = await puppeteer.launch({ headless: true }); | |
const page = await browser.newPage(); | |
await page.goto('https://www.milenio.com/ultima-hora'); | |
await page.waitForSelector("[class='content']"); | |
let wallData = await page.evaluate(e => { | |
window.scrollTo(0, 500); | |
// Get all containers with the class equal to lr-row-news and create an array from them |
This file contains hidden or 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
body { | |
overflow: hidden; | |
margin: 0; | |
} | |
.side-menu { | |
position: absolute; | |
top: 0; | |
bottom: 0; | |
left: -300px; |
This file contains hidden or 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 lang="es"> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Side Burguer Menu</title> | |
<!-- We are importing our principal CSS file from assets directory --> | |
<link rel="stylesheet" href="assets/main.css"> | |
<!-- This lines import external resources (JQUERY and FONT-AWESOME) --> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> |