如何使用phantomjs呈现html元素

时间:2013-09-06 12:13:16

标签: javascript phantomjs

我想将图像保存在代码中指定的div中。但是使用下面的代码我会得到一些其他的部分。这是正确的方法吗?我只是phantomjs的初学者。所以请帮忙。

var page = require('webpage').create();

page.open("http://n1k0.github.io/casperjs/#phantom_Casper_captureSelector", function    (status) {
    if (status !== 'success') {
        console.log('Unable to load the address!');
    } else {

        var clipRect = page.evaluate(function () { 
        return document.querySelector(".span7 demo").getBoundingClientRect(); });
        page.clipRect = {
            top:    clipRect.top,
            left:   clipRect.left,
            width:  clipRect.width,
            height: clipRect.height
        };



        window.setTimeout(function () {
            page.render('capture.png');
            phantom.exit();
        }, 200);
    }
});

3 个答案:

答案 0 :(得分:12)

这可能是完全错误的,但我在评论中提供的链接是这样的:

更改

var clipRect = page.evaluate(function () { 
return document.querySelector(".span7 demo").getBoundingClientRect(); });

为:

var clipRect = document.querySelector(".span7 demo").getBoundingClientRect(); });

修改

好的,所以我想想出这个,这里是适合我的代码。我不熟悉使用 querySelector 的phantomjs api所以我最终使用了getElementsByClassName,这几乎是一样的。

var page = require('webpage').create();

page.open("http://n1k0.github.io/casperjs/#phantom_Casper_captureSelector", function    (status) {
    if (status !== 'success') {
        console.log('Unable to load the address!');
    } else {
        window.setTimeout(function () {
            //Heres the actual difference from your code...
            var bb = page.evaluate(function () { 
                return document.getElementsByClassName("span7 demo")[0].getBoundingClientRect(); 
            });

            page.clipRect = {
                top:    bb.top,
                left:   bb.left,
                width:  bb.width,
                height: bb.height
            };

            page.render('capture.png');
            phantom.exit();
        }, 200);
    }
});

答案 1 :(得分:1)

您也可以轻松捕获具有ID的元素。只需将getElementsByClassName("classname")[0]替换为document.getElementById('divID')即可。一个完整的工作示例是:

var page = require('webpage').create();

page.open("https://www.sejlar.com/maps.html", function (status) {
    if (status !== 'success') {
        console.log('Page not found');
    } 
    else {
        var p = page.evaluate(function () {
            return document.getElementById('map').getBoundingClientRect();
        });

        page.clipRect = {
            top:    p.top,
            left:   p.left,
            width:  p.width,
            height: p.height
        };

        page.render('screenshot.png');
        phantom.exit(); 
    }
});

答案 2 :(得分:0)

我相信你应该在这里做的是使用JSON.stringify围绕你的返回对象。

return JSON.stringify(document.getElementsByClassName("span7 demo")[0].getBoundingClientRect();

或获取div的内容

return JSON.stringify(document.getElementsByClassName("span7 demo")[0].innerHTML);