Files
appium/test/helpers/alert.js
2014-02-07 12:51:20 +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 () {});
};