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 Clear Canvas operations made by keyboard Control+Delete and by using methods page.getByTestId('clear-canvas').click(),
or similar
and replace them with proper helper function selectClearCanvasTool(page)
Recommendation: Try to search "page.keyboard.press(" in code.
That could be page.keyboard.press('Control+Delete'); or page.keyboard.press('${modifier}+Delete'); or similar
The text was updated successfully, but these errors were encountered:
Control+Delete
and by using methodspage.getByTestId('clear-canvas').click()
,or similar
and replace them with proper helper function
selectClearCanvasTool(page)
Recommendation: Try to search "page.keyboard.press(" in code.
That could be
page.keyboard.press('Control+Delete');
orpage.keyboard.press('${modifier}+Delete');
or similarThe text was updated successfully, but these errors were encountered: