You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The key board and the mouse allow to navigate throught the document giving focus to particular elements. Here is a suggestion to implement it :
keyboard:
// hit tab/shift tabkeyboard.tab();keyboard.revTab();// Hit tab/shift tab until element is focused (may fail)keyboard.tabTo(element);keyboard.revTabTo(element);
We have to fire focus/blur events according to what the browser do.
mouse:
mouse.move(element);mouse.moveTo(x,y);mouse.focus(element);// click on an element and release on its parent
The text was updated successfully, but these errors were encountered:
The key board and the mouse allow to navigate throught the document giving focus to particular elements. Here is a suggestion to implement it :
We have to fire focus/blur events according to what the browser do.
The text was updated successfully, but these errors were encountered: