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
9 lines (8 loc) • 393 B
JavaScript
import { UiControllerClientError } from './ui-controller-client-error';
export class UiControllerNotConnectedError extends 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';
}
}