请进行一些测试,具体取决于我的设备。在开始测试之前,我必须确定我的设备是移动设备还是桌面设备。
我想在功能之前使用夜视仪,我在下面添加了我的globals.js
let calendar = NSCalendar.currentCalendar()
let formatter = NSDateFormatter()
formatter.timeZone = NSTimeZone.localTimeZone()
formatter.dateFormat = "dd:MM:yyyy hh:mm:ss a" // Customize format base on requirement
for i in 0...10
{
let newDate = calendar.dateByAddingUnit(.Day, value: i, toDate: NSDate(), options: [])
print(newDate)
print(formatter.stringFromDate(newDate!))
}
我的考试
var self = module.exports = {
environment: undefined,
beforeEach: function (done) {
self.environment = browser.window.navigator.userAgent;
console.log("Run against: " + self.environment);
done();
},
};
但是,我的代码在
失败了 module.exports = {
tags: ['assetindex'],
'visit': function(browser) {
(/Mobile/.test(browser.globals.environment)) ?
browser
.page.assetindex().mobileVisit()
.end()
:
browser
.page.assetindex().mobileVisit()
.end()
}
};
说widnow没有定义。考虑到我没有针对浏览器对象运行,错误是有道理的。请问我该如何实现?我怎么能在夜视仪上对着我的浏览器使用js窗口?任何帮助或替代方案都非常感谢
更新
在阅读下面的答案后,我将我的global.js更新为
self.environment = browser.window.navigator.userAgent;
令我惊讶的是,自我环境总是未定义的。它似乎没有运行.exec函数。
答案 0 :(得分:5)
您可以使用execute
命令:
browser.execute(function(data) {
return window.navigator.userAgent;
}, [], function(result) {
self.environment = result.value;
});
有关详细信息:http://nightwatchjs.org/api/execute.html
在您的情况下,使用beforeEach
时,您需要在回调函数中移动done()
,如下所示:
beforeEach: function (browser, done) {
browser.execute(function(data) {
return window.navigator.userAgent;
}, [], function(result) {
console.log('it comes here ', result);
self.environment = result.value;
console.log("Run against: " + self.environment);
done();
});
},