Files
appium/test/helpers/alert-utils.js
T
2014-01-30 16:58:19 +08:00

13 lines
217 B
JavaScript

"use strict";
exports.okIfAlert = function (driver) {
return driver
.alertText()
.then(function (text) {
if (text) {
return driver.acceptAlert();
}
})
.catch(function () {});
};