如何读取规范中量角器的conf.js文件中存在的参数值

如何读取规范中量角器的conf.js文件中存在的参数值,第1张

如何读取规范中量角器的conf.js文件中存在的参数值

是的,您可以使用访问所有配置值

browser.getProcessedConfig
。请在此处查看更多详细信息

下面的例子

describe('test', function(){    it('test', function(){        browser.get('http://www.way2automation.com/angularjs-protractor/registeration/#/login');        browser.getProcessedConfig().then(function(config){ console.log(config.baseUrl) // Print Url console.log(config.specs) // Prints specs console.log(config.capabilities) // Prints capabilities        })        browser.sleep(10000)    });});

如果您希望使其可重复使用

 this.getConfParameterValue = function() {     return browser.getProcessedConfig().then(function(config) {return config.directConnect;     })  }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5028488.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存