playwright/tests/library/locator-generator.spec.ts

139 lines
5.8 KiB
TypeScript
Raw Normal View History

/**
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* 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 { contextTest as it, expect } from '../config/browserTest';
import { asLocator } from '../../packages/playwright-core/lib/server/isomorphic/locatorGenerators';
import type { Locator } from 'playwright-core';
function generate(locator: Locator) {
const result: any = {};
for (const lang of ['javascript', 'python', 'java', 'csharp'])
result[lang] = asLocator(lang, (locator as any)._selector, false);
return result;
}
it('reverse engineer locators', async ({ page }) => {
expect.soft(generate(page.getByTestId('Hello'))).toEqual({
javascript: "getByTestId('Hello')",
python: 'get_by_test_id("Hello")',
java: 'getByTestId("Hello")',
csharp: 'GetByTestId("Hello")'
});
expect.soft(generate(page.getByTestId('He"llo'))).toEqual({
javascript: 'getByTestId(\'He"llo\')',
python: 'get_by_test_id("He\\\"llo")',
java: 'getByTestId("He\\\"llo")',
csharp: 'GetByTestId("He\\\"llo")'
});
expect.soft(generate(page.getByText('Hello', { exact: true }))).toEqual({
csharp: 'GetByText("Hello", new() { Exact: true })',
java: 'getByText("Hello", new Page.GetByTextOptions().setExact(exact))',
javascript: 'getByText(\'Hello\', { exact: true })',
python: 'get_by_text("Hello", exact=true)',
});
expect.soft(generate(page.getByText('Hello'))).toEqual({
csharp: 'GetByText("Hello")',
java: 'getByText("Hello")',
javascript: 'getByText(\'Hello\')',
python: 'get_by_text("Hello")',
});
expect.soft(generate(page.getByText(/Hello/))).toEqual({
csharp: 'GetByText(new Regex("Hello"))',
java: 'getByText(Pattern.compile("Hello"))',
javascript: 'getByText(/Hello/)',
python: 'get_by_text(re.compile(r"Hello"))',
});
expect.soft(generate(page.getByLabel('Name'))).toEqual({
csharp: 'GetByLabel("Name")',
java: 'getByLabel("Name")',
javascript: 'getByLabel(\'Name\')',
python: 'get_by_label("Name")',
});
expect.soft(generate(page.getByLabel('Last Name', { exact: true }))).toEqual({
csharp: 'GetByLabel("Last Name", new() { Exact: true })',
java: 'getByLabel("Last Name", new Page.GetByLabelOptions().setExact(exact))',
javascript: 'getByLabel(\'Last Name\', { exact: true })',
python: 'get_by_label("Last Name", exact=true)',
});
expect.soft(generate(page.getByLabel(/Last\s+name/i))).toEqual({
csharp: 'GetByLabel(new Regex("Last\\\\s+name", RegexOptions.IgnoreCase))',
java: 'getByLabel(Pattern.compile("Last\\\\s+name", Pattern.CASE_INSENSITIVE))',
javascript: 'getByLabel(/Last\\s+name/i)',
python: 'get_by_label(re.compile(r"Last\\\\s+name", re.IGNORECASE))',
});
expect.soft(generate(page.getByPlaceholder('hello'))).toEqual({
csharp: 'GetByPlaceholder("hello")',
java: 'getByPlaceholder("hello")',
javascript: 'getByPlaceholder(\'hello\')',
python: 'get_by_placeholder("hello")',
});
expect.soft(generate(page.getByPlaceholder('Hello', { exact: true }))).toEqual({
csharp: 'GetByPlaceholder("Hello", new() { Exact: true })',
java: 'getByPlaceholder("Hello", new Page.GetByPlaceholderOptions().setExact(exact))',
javascript: 'getByPlaceholder(\'Hello\', { exact: true })',
python: 'get_by_placeholder("Hello", exact=true)',
});
expect.soft(generate(page.getByPlaceholder(/wor/i))).toEqual({
csharp: 'GetByPlaceholder(new Regex("wor", RegexOptions.IgnoreCase))',
java: 'getByPlaceholder(Pattern.compile("wor", Pattern.CASE_INSENSITIVE))',
javascript: 'getByPlaceholder(/wor/i)',
python: 'get_by_placeholder(re.compile(r"wor", re.IGNORECASE))',
});
expect.soft(generate(page.getByAltText('hello'))).toEqual({
csharp: 'GetByAltText("hello")',
java: 'getByAltText("hello")',
javascript: 'getByAltText(\'hello\')',
python: 'get_by_alt_text("hello")',
});
expect.soft(generate(page.getByAltText('Hello', { exact: true }))).toEqual({
csharp: 'GetByAltText("Hello", new() { Exact: true })',
java: 'getByAltText("Hello", new Page.GetByAltTextOptions().setExact(exact))',
javascript: 'getByAltText(\'Hello\', { exact: true })',
python: 'get_by_alt_text("Hello", exact=true)',
});
expect.soft(generate(page.getByAltText(/wor/i))).toEqual({
csharp: 'GetByAltText(new Regex("wor", RegexOptions.IgnoreCase))',
java: 'getByAltText(Pattern.compile("wor", Pattern.CASE_INSENSITIVE))',
javascript: 'getByAltText(/wor/i)',
python: 'get_by_alt_text(re.compile(r"wor", re.IGNORECASE))',
});
expect.soft(generate(page.getByTitle('hello'))).toEqual({
csharp: 'GetByTitle("hello")',
java: 'getByTitle("hello")',
javascript: 'getByTitle(\'hello\')',
python: 'get_by_title("hello")',
});
expect.soft(generate(page.getByTitle('Hello', { exact: true }))).toEqual({
csharp: 'GetByTitle("Hello", new() { Exact: true })',
java: 'getByTitle("Hello", new Page.GetByTitleOptions().setExact(exact))',
javascript: 'getByTitle(\'Hello\', { exact: true })',
python: 'get_by_title("Hello", exact=true)',
});
expect.soft(generate(page.getByTitle(/wor/i))).toEqual({
csharp: 'GetByTitle(new Regex("wor", RegexOptions.IgnoreCase))',
java: 'getByTitle(Pattern.compile("wor", Pattern.CASE_INSENSITIVE))',
javascript: 'getByTitle(/wor/i)',
python: 'get_by_title(re.compile(r"wor", re.IGNORECASE))',
});
});