/** * Copyright (c) Microsoft Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { test, expect } from './inspectorTest'; test.describe('cli codegen', () => { test.skip(({ mode }) => mode !== 'default'); test('should click locator.first', async ({ page, openRecorder }) => { const recorder = await openRecorder(); await recorder.setContentAndWait(` `); const locator = await recorder.hoverOverElement('button'); expect(locator).toBe(`getByRole('button', { name: 'Submit' }).first()`); const [message, sources] = await Promise.all([ page.waitForEvent('console', msg => msg.type() !== 'error'), recorder.waitForOutput('JavaScript', 'click'), recorder.trustedClick() ]); expect.soft(sources.get('JavaScript')!.text).toContain(` await page.getByRole('button', { name: 'Submit' }).first().click();`); expect.soft(sources.get('Python')!.text).toContain(` page.get_by_role("button", name="Submit").first.click()`); expect.soft(sources.get('Python Async')!.text).toContain(` await page.get_by_role("button", name="Submit").first.click()`); expect.soft(sources.get('Java')!.text).toContain(` page.getByRole(AriaRole.BUTTON, new Page.GetByRoleOptions().setName("Submit")).first().click();`); expect.soft(sources.get('C#')!.text).toContain(` await page.GetByRole(AriaRole.Button, new() { Name = "Submit" }).First.ClickAsync();`); expect(message.text()).toBe('click1'); }); test('should click locator.nth', async ({ page, openRecorder }) => { const recorder = await openRecorder(); await recorder.setContentAndWait(` `); const locator = await recorder.hoverOverElement('button >> nth=1'); expect(locator).toBe(`getByRole('button', { name: 'Submit' }).nth(1)`); const [message, sources] = await Promise.all([ page.waitForEvent('console', msg => msg.type() !== 'error'), recorder.waitForOutput('JavaScript', 'click'), recorder.trustedClick() ]); expect.soft(sources.get('JavaScript')!.text).toContain(` await page.getByRole('button', { name: 'Submit' }).nth(1).click();`); expect.soft(sources.get('Python')!.text).toContain(` page.get_by_role("button", name="Submit").nth(1).click()`); expect.soft(sources.get('Python Async')!.text).toContain(` await page.get_by_role("button", name="Submit").nth(1).click()`); expect.soft(sources.get('Java')!.text).toContain(` page.getByRole(AriaRole.BUTTON, new Page.GetByRoleOptions().setName("Submit")).nth(1).click();`); expect.soft(sources.get('C#')!.text).toContain(` await page.GetByRole(AriaRole.Button, new() { Name = "Submit" }).Nth(1).ClickAsync();`); expect(message.text()).toBe('click2'); }); test('should generate frame locators', async ({ page, openRecorder, server }) => { const recorder = await openRecorder(); /* iframe div Hello1 iframe div Hello2 iframe[name=one] div HelloNameOne iframe[name=two] dev HelloNameTwo iframe dev HelloAnonymous */ await recorder.setContentAndWait(` `, server.EMPTY_PAGE, 1); const [sources] = await Promise.all([ recorder.waitForOutput('JavaScript', 'Click me'), page.locator('[title="hello world"]').contentFrame().getByRole('button', { name: 'Click me' }).click(), ]); expect.soft(sources.get('JavaScript')!.text).toContain( `await page.locator('iframe[title="hello world"]').contentFrame().getByRole('button', { name: 'Click me' }).click();` ); expect.soft(sources.get('Java')!.text).toContain( `page.locator(\"iframe[title=\\\"hello world\\\"]\").contentFrame().getByRole(AriaRole.BUTTON, new FrameLocator.GetByRoleOptions().setName(\"Click me\")).click();` ); expect.soft(sources.get('Python')!.text).toContain( `page.locator(\"iframe[title=\\\"hello world\\\"]\").content_frame().get_by_role(\"button\", name=\"Click me\").click()` ); expect.soft(sources.get('Python Async')!.text).toContain( `await page.locator("iframe[title=\\\"hello world\\\"]").content_frame().get_by_role("button", name="Click me").click()` ); expect.soft(sources.get('C#')!.text).toContain( `await page.Locator("iframe[title=\\\"hello world\\\"]").ContentFrame().GetByRole(AriaRole.Button, new() { Name = "Click me" }).ClickAsync();` ); }); test('should generate frame locators with name attribute', async ({ page, openRecorder, server }) => { const recorder = await openRecorder(); await recorder.setContentAndWait(` `, server.EMPTY_PAGE, 1); const [sources] = await Promise.all([ recorder.waitForOutput('JavaScript', 'Click me'), page.locator('[name="hello world"]').contentFrame().getByRole('button', { name: 'Click me' }).click(), ]); expect.soft(sources.get('JavaScript')!.text).toContain( `await page.locator('iframe[name="hello world"]').contentFrame().getByRole('button', { name: 'Click me' }).click();` ); expect.soft(sources.get('Java')!.text).toContain( `page.locator(\"iframe[name=\\\"hello world\\\"]\").contentFrame().getByRole(AriaRole.BUTTON, new FrameLocator.GetByRoleOptions().setName(\"Click me\")).click();` ); expect.soft(sources.get('Python')!.text).toContain( `page.locator(\"iframe[name=\\\"hello world\\\"]\").content_frame().get_by_role(\"button\", name=\"Click me\").click()` ); expect.soft(sources.get('Python Async')!.text).toContain( `await page.locator("iframe[name=\\\"hello world\\\"]").content_frame().get_by_role("button", name="Click me").click()` ); expect.soft(sources.get('C#')!.text).toContain( `await page.Locator("iframe[name=\\\"hello world\\\"]").ContentFrame().GetByRole(AriaRole.Button, new() { Name = "Click me" }).ClickAsync();` ); }); test('should generate frame locators with id attribute', async ({ page, openRecorder, server }) => { const recorder = await openRecorder(); await recorder.setContentAndWait(` `, server.EMPTY_PAGE, 1); const [sources] = await Promise.all([ recorder.waitForOutput('JavaScript', 'Click me'), page.locator('[id="hello-world"]').contentFrame().getByRole('button', { name: 'Click me' }).click(), ]); expect.soft(sources.get('JavaScript')!.text).toContain( `await page.locator('#hello-world').contentFrame().getByRole('button', { name: 'Click me' }).click();` ); expect.soft(sources.get('Java')!.text).toContain( `page.locator(\"#hello-world\").contentFrame().getByRole(AriaRole.BUTTON, new FrameLocator.GetByRoleOptions().setName(\"Click me\")).click();` ); expect.soft(sources.get('Python')!.text).toContain( `page.locator(\"#hello-world\").content_frame().get_by_role(\"button\", name=\"Click me\").click()` ); expect.soft(sources.get('Python Async')!.text).toContain( `await page.locator("#hello-world").content_frame().get_by_role("button", name="Click me").click()` ); expect.soft(sources.get('C#')!.text).toContain( `await page.Locator("#hello-world").ContentFrame().GetByRole(AriaRole.Button, new() { Name = "Click me" }).ClickAsync();` ); }); test('should generate frame locators with testId', async ({ page, openRecorder, server }) => { const recorder = await openRecorder(); await recorder.setContentAndWait(` `, server.EMPTY_PAGE, 1); const [sources] = await Promise.all([ recorder.waitForOutput('JavaScript', 'my-testid'), page.locator('iframe[data-testid="my-testid"]').contentFrame().getByRole('button', { name: 'Click me' }).click(), ]); expect.soft(sources.get('JavaScript')!.text).toContain( `await page.locator('[data-testid="my-testid"]').contentFrame().getByRole('button', { name: 'Click me' }).click();` ); expect.soft(sources.get('Java')!.text).toContain( `page.locator(\"[data-testid=\\\"my-testid\\\"]\").contentFrame().getByRole(AriaRole.BUTTON, new FrameLocator.GetByRoleOptions().setName(\"Click me\")).click();` ); expect.soft(sources.get('Python')!.text).toContain( `page.locator(\"[data-testid=\\\"my-testid\\\"]\").content_frame().get_by_role(\"button\", name=\"Click me\").click()` ); expect.soft(sources.get('Python Async')!.text).toContain( `await page.locator("[data-testid=\\\"my-testid\\\"]").content_frame().get_by_role("button", name="Click me").click()` ); expect.soft(sources.get('C#')!.text).toContain( `await page.Locator("[data-testid=\\\"my-testid\\\"]").ContentFrame().GetByRole(AriaRole.Button, new() { Name = "Click me" }).ClickAsync();` ); }); test('should generate role locators undef frame locators', async ({ page, openRecorder, server }) => { const recorder = await openRecorder(); await recorder.setContentAndWait(`