Skip to content

Commit

Permalink
added type changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gravityvi committed Aug 25, 2023
1 parent 7dfb6d3 commit 23638e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/web-element.d.ts
Expand Up @@ -197,7 +197,7 @@ type WaitUntilOptions = {
abortOnFailure?: boolean;
};

type WaitUntilActions = 'selected' | 'visible' | 'disabled' | 'enabled' | 'not.selected' | 'not.visible' | 'not.enabled';
type WaitUntilActions = 'selected' | 'visible' | 'disabled' | 'enabled' | 'not.selected' | 'not.visible' | 'not.enabled' | 'present' | 'not.present';

export class Elements implements PromiseLike<WebElement[]> {
constructor(
Expand Down

0 comments on commit 23638e2

Please sign in to comment.