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 ZoomIn/ZoomOut/ZoomReset operations made by keyboard Control+-, Control+= and Control+0 and by using methods selectTopPanelButton(MacromoleculesTopPanelButton.ZoomIn, page);, selectTool(MacromoleculesTopPanelButton.ZoomIn, page);, selectTopPanelButton(MacromoleculesTopPanelButton.ZoomOut, page); selectTool(MacromoleculesTopPanelButton.ZoomOut, page);, selectTopPanelButton(MacromoleculesTopPanelButton.ZoomReset, page);
and selectTool(MacromoleculesTopPanelButton.ZoomReset, page);,
or similar
and replace them with proper helper function (create them if they doesn't exists)
Recommendation: Try to search "page.keyboard.press(" in code
That could be page.keyboard.press('Control+-');, await page.keyboard.press('Control+Minus');
or page.keyboard.press('${modifier}+Minus'); or similar
The text was updated successfully, but these errors were encountered:
Control+-
,Control+=
andControl+0
and by using methodsselectTopPanelButton(MacromoleculesTopPanelButton.ZoomIn, page);
,selectTool(MacromoleculesTopPanelButton.ZoomIn, page);
,selectTopPanelButton(MacromoleculesTopPanelButton.ZoomOut, page);
selectTool(MacromoleculesTopPanelButton.ZoomOut, page);
,selectTopPanelButton(MacromoleculesTopPanelButton.ZoomReset, page);
and
selectTool(MacromoleculesTopPanelButton.ZoomReset, page);
,or similar
and replace them with proper helper function (create them if they doesn't exists)
Recommendation: Try to search "page.keyboard.press(" in code
That could be
page.keyboard.press('Control+-');
,await page.keyboard.press('Control+Minus');
or
page.keyboard.press('${modifier}+Minus');
or similarThe text was updated successfully, but these errors were encountered: