You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
314 B
JavaScript
8 lines
314 B
JavaScript
var page = require('webpage').create();
|
|
page.settings.userAgent = 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36';
|
|
|
|
var url = 'https://www.1688.com/';
|
|
page.open(url, function (status) {
|
|
console.log(JSON.stringify(page.cookies));
|
|
phantom.exit();
|
|
}); |