askui
Version:
Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on
13 lines (12 loc) • 617 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UiControllerNotConnectedError = void 0;
const ui_controller_client_error_1 = require("./ui-controller-client-error");
class UiControllerNotConnectedError extends ui_controller_client_error_1.UiControllerClientError {
constructor() {
super('UI Controller is not connected. Did you call `UiControlClient.connect()`'
+ ' before trying to interact with the UI Controller / OS?');
this.name = 'UiControllerNotConnectedError';
}
}
exports.UiControllerNotConnectedError = UiControllerNotConnectedError;