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 by using methods await page.getByTestId('zoom-in').click();, await page.getByTestId('zoom-default').click() await page.getByTestId('zoom-out').click() await page.getByTestId('zoom-selector').click()
and await page.getByTestId('reset-zoom-button').click()
and replace them with proper helper function function selectZoomInTool(page: Page, count = 1) function selectZoomReset(page: Page) function selectZoomOutTool(page: Page, count = 1)
The text was updated successfully, but these errors were encountered:
Identify all ZoomIn/ZoomOut/ZoomReset operations made by by using methods
await page.getByTestId('zoom-in').click();
,await page.getByTestId('zoom-default').click()
await page.getByTestId('zoom-out').click()
await page.getByTestId('zoom-selector').click()
and
await page.getByTestId('reset-zoom-button').click()
and replace them with proper helper function
function selectZoomInTool(page: Page, count = 1)
function selectZoomReset(page: Page)
function selectZoomOutTool(page: Page, count = 1)
The text was updated successfully, but these errors were encountered: