微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – PhantomJS和iFrame

我使用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中使用元素,例如点击按钮?

解决方法

最近版本的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

原文地址:https://www.jb51.cc/js/153663.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐