PhantomJS和iFrame

时间:2012-03-30 10:38:57

标签: javascript coffeescript phantomjs

我正在使用phantomjs(1.5)和casperjs进行功能测试。

casper = require('casper').create
  loadImages: false


casper.start 'http://vk.com', ->
  @fill 'form[name="login"]', { email: mail, pass: pass}, true

casper.thenOpen "http://vk.com/#{app}", ->
  @echo "User at #{app}"  
casper.then ->
  @click "iframe['element']" #?! how I can do it?
casper.then ->
  @wait 2000000, -> @echo "exit from room: #{num}"


casper.run()

所以,我登录vk.com(俄罗斯的社交网络),我的应用程序加载了iframe。

如何在iFrame中使用元素,例如点击一个按钮?

2 个答案:

答案 0 :(得分:11)

PhantomJS的最新版本允许我们使用 - web-security = no 标志来表示不尊重安全策略。

下一个脚本(仅限PhantomJS)获取iframe中的链接标题,即iframe(adsense)。

/*
    Accessing an iframe (different domain) with PhantomJS
    Example by deerme.org
*/

var page = require('webpage').create(), system = require('system'), t, address;
if (system.args.length === 1)
{
    console.log('Usage: phantomfs iframe.js <some URL>');
    phantom.exit();
}

t = Date.now();
address = system.args[1];
page.open(address, function (status)
{
    if (status !== 'success')
    {
            console.log('FAIL to load the address');
    }
    else
    {
        t = (Date.now()) - t;
        title = page.evaluate( function(){
            return document.title;
        });
        linkTitle = page.evaluate( function(){
            // The site containing jQuery?
            if ( typeof(jQuery) == "undefined" )
            {
                // Force Load
                page.injectJs('http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js');
            }
            // first iframe #aswift_2
            // second iframe #google_ads_frame3
            return jQuery("#aswift_2").contents()
                .find("body")
                    .find("#google_ads_frame3")
                        .contents()
                            .find("body")
                                .contents()
                                    .find("a:last")
                                        .attr("title");
        });
        console.log('Loading time: ' + t + ' msec');    
        console.log('Webpage title: ' + title);
        console.log('Link title (iframe adsense): ' + linkTitle);
    }
    phantom.exit();
});

请记住,使用参数

运行

phantomjs --web-security = no iframe.js http://anysite.org

答案 1 :(得分:-3)

如果您的应用程序位于与iframe不同的域中,则您的脚本无法与iframe的内容进行交互。请参阅:Can scripts in iframe interact with scripts in the main page