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
Identify all Undo/Redo operations made by keyboard Control+Z, Control+Shift+Z and by using methods selectTopPanelButton(TopPanelButton.Undo, page);, await selectTopPanelButton(TopPanelButton.Redo, page);
and replace them with
Undo operation ==> pressUndoButton(page)
Redo operation ==> pressRedoButton(page)
methods
Recommendation: Try to search "page.keyboard.press(" in code
That could be page.keyboard.press('Control+Z');
or page.keyboard.press('${modifier}+KeyZ'); or similar
The text was updated successfully, but these errors were encountered:
Identify all Undo/Redo operations made by keyboard
Control+Z
,Control+Shift+Z
and by using methodsselectTopPanelButton(TopPanelButton.Undo, page);
,await selectTopPanelButton(TopPanelButton.Redo, page);
and replace them with
Undo operation ==>
pressUndoButton(page)
Redo operation ==>
pressRedoButton(page)
methods
Recommendation: Try to search "page.keyboard.press(" in code
That could be
page.keyboard.press('Control+Z');
or
page.keyboard.press('${modifier}+KeyZ');
or similarThe text was updated successfully, but these errors were encountered: