如何在硒苏打测试中获取storedVars数组 ?我希望将具有给定名称的变量放入 array 。但是是未定义的。或者也许我不知道我可以在什么范围内访问它。storeEval
storedVars
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){
// ---------------------------------------------------------------
// how to get storedVars['height'] here?
// ReferenceError: storedVars is not defined
// ---------------------------------------------------------------
console.log ("height: "+storedVars['height'] );
if (err)
{
throw err;
}
browser.testComplete(function(){
});
});
});
});