1

如何在硒苏打测试中获取storedVars数组 ?我希望将具有给定名称的变量放入 array 。但是是未定义的。或者也许我不知道我可以在什么范围内访问它。storeEvalstoredVarsstoredVars

var soda = require('soda')
    , assert = require('assert');
var browser = soda.createClient({
    host: 'localhost'
    , port: 4444
    , url: 'http://jquery.com'
    , browser: 'firefox'
});
browser.session(function(err){
    browser.open('/', function(err, body, res){
            browser.storeEval(" window.jQuery('.logo').height();", "height", function(err, body, res){
                // ---------------------------------------------------------------
                // how to get storedVars['height'] here?
                // ReferenceError: storedVars is not defined
                // ---------------------------------------------------------------
                console.log ("height: "+storedVars['height'] ); 
                if (err)
                {
                    throw err;
                }
                browser.testComplete(function(){

                });

            });
    });
});
4

1 回答 1

0

使用上面的示例,您可以像这样访问storedVars:

var soda = require('soda')
    , assert = require('assert');
var browser = soda.createClient({
    host: 'localhost'
    , port: 4444
    , url: 'http://jquery.com'
    , browser: 'firefox'
});
browser.session(function(err){
    browser.open('/', function(err, body, res){
        browser.storeEval("window.jQuery('.logo').height();", "height", function(err, body, res){
            browser.getEval('${height}',function(err,val){
                if(err !== null) throw err
                console.log(val)
                browser.testComplete(function(){ });
            });
        });
    });
})

一件事是确保在获得它们之前不要调用 testComplete !

于 2013-06-20T21:37:18.597 回答