10

機能テストに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()

そこで、iframeがロードされたアプリであるvk.com(ロシアのソーシャルネットワーク)にログインします。

クリックしてボタンを押すなど、iFrameで要素を使用するにはどうすればよいですか?

4

2 に答える 2

11

PhantomJS の最近のバージョンでは、セキュリティ ポリシーを無視するために--web-security=noフラグを使用できます。

次のスクリプト (PhantomJS のみ) は、iframe (アドセンス) である iframe 内のリンクのタイトルを取得します。

/*
    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

于 2013-02-27T18:26:05.423 に答える
-3

アプリケーションが iframe のドメインとは異なるドメインにある場合、スクリプトは iframe のコンテンツと対話できません。参照: iframe のスクリプトはメイン ページのスクリプトと対話できますか

于 2012-03-30T12:57:41.327 に答える