我试图从网站获取某些数据,虽然它不是实际文本,而是div的实际类名(这是我想要的数据存储的位置)。
righWheel = bytearray(b'\xc0\x00')
所以我的问题是,在PhantomJS中,我将如何检索这些实际数据?
答案 0 :(得分:1)
var page = require('webpage').create();
page.open('http://example.com/', function() {
var className = page.evaluate(function(){
return document.getElementById("id").className;
});
console.log(className);
phantom.exit();
});