-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.txt
32 lines (27 loc) · 1.03 KB
/
test.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const puppeteer = require('puppeteer');
(async() => {
// Mở trình duyệt mới và tới trang của kenh14
const browser = await puppeteer.launch({headless: true});
const page = await browser.newPage();
await page.goto('https://giacaphe.com/');
const listGiaCF = await page.evaluate(() => {
let table = document.querySelector('table#gianoidia');
var listThiTruong = [];
//rows[0].cells[0]
for (let i = 1; i < table.rows.length; i++) {
//for (let j = 0; j < table.rows[i].cells.length; j++) {
//console.log("name" + table.rows[i].cells.item(0).innerHTML);
var names = table.rows[i].cells[0].childNodes;
var ten = names[0].value;
var thitruong = {
name:ten
}
listThiTruong.push(thitruong);
//}
}
return listThiTruong;
});
// In ra kết quả và đóng trình duyệt
console.log(listGiaCF);
await browser.close();
})();