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 Control+A, Control+X, Control+C, Control+V operations made by keyboard and replace them with Control+C ==> copyToClipboardByKeyboard(page) Control+X ==> cutToClipboardByKeyboard(page) Control+V ==> pasteFromClipboardByKeyboard(page) Control+A ==> selectAllStructuresOnCanvas(page)
methods
Recommendation: Try to search "page.keyboard.press(" in code
That could be page.keyboard.press('Control+v');
or page.keyboard.press('${modifier}+KeyC'); or similar
The text was updated successfully, but these errors were encountered:
AlexeyGirin
changed the title
Autotests: Replace Copy/Cut/Paste keyboard operations with valid hepler fuctions
Autotests: Replace Copy/Cut/Paste keyboard operations with valid helper functions
Nov 4, 2024
Identify all
Control+A
,Control+X
,Control+C
,Control+V
operations made by keyboard and replace them withControl+C
==>copyToClipboardByKeyboard(page)
Control+X
==>cutToClipboardByKeyboard(page)
Control+V
==>pasteFromClipboardByKeyboard(page)
Control+A
==>selectAllStructuresOnCanvas(page)
methods
Recommendation: Try to search "page.keyboard.press(" in code
That could be
page.keyboard.press('Control+v');
or
page.keyboard.press('${modifier}+KeyC');
or similarThe text was updated successfully, but these errors were encountered: