How to wait for two states of an Elm? EState.FOCUSED and EState.FOCUSABLE
wait.until(30, () => e.State == EState.FOCUSABLE???);
Would it be more appropriate to use wait.retry?
I want to implement: If the state of element e is not FOCUSED and FOCUSABLE, then execute e.MouseClick() until the state meets the requirements.
wait.until(30, () => e.State == EState.FOCUSABLE???);
Would it be more appropriate to use wait.retry?
I want to implement: If the state of element e is not FOCUSED and FOCUSABLE, then execute e.MouseClick() until the state meets the requirements.
