mirror of
https://github.com/appium/appium.git
synced 2026-02-11 12:29:48 -06:00
13 lines
217 B
JavaScript
13 lines
217 B
JavaScript
"use strict";
|
|
|
|
exports.okIfAlert = function (driver) {
|
|
return driver
|
|
.alertText()
|
|
.then(function (text) {
|
|
if (text) {
|
|
return driver.acceptAlert();
|
|
}
|
|
})
|
|
.catch(function () {});
|
|
};
|