/** * 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 { contextTest as it, expect } from './config/browserTest'; import type { Page, Frame } from '../index'; async function generate(pageOrFrame: Page | Frame, target: string): Promise { return pageOrFrame.$eval(target, e => (window as any).playwright.selector(e)); } it.describe('selector generator', () => { it.skip(({ mode }) => mode !== 'default'); it.beforeEach(async ({ context }) => { await (context as any)._enableRecorder({ language: 'javascript' }); }); it('should prefer button over inner span', async ({ page }) => { await page.setContent(``); expect(await generate(page, 'button')).toBe('#clickme'); }); it('should prefer role=button over inner span', async ({ page }) => { await page.setContent(`
`); expect(await generate(page, 'div')).toBe('div[role="button"]'); }); it('should generate text and normalize whitespace', async ({ page }) => { await page.setContent(`
Text some\n\n\n more \t text
`); expect(await generate(page, 'div')).toBe('text=Text some more text'); }); it('should generate text for ', async ({ page }) => { await page.setContent(``); expect(await generate(page, 'input')).toBe('text=Click me'); }); it('should trim text', async ({ page }) => { await page.setContent(`
Text0123456789Text0123456789Text0123456789Text0123456789Text0123456789Text0123456789Text0123456789Text0123456789Text0123456789Text0123456789
`); expect(await generate(page, 'div')).toBe('text=Text0123456789Text0123456789Text0123456789Text0123456789Text0123456789Text012345'); }); it('should escape text with >>', async ({ page }) => { await page.setContent(`
text>>text
`); expect(await generate(page, 'div')).toBe('text=/.*text\\>\\>text.*/'); }); it('should escape text with quote', async ({ page }) => { await page.setContent(`
text"text
`); expect(await generate(page, 'div')).toBe('text=/.*text"text.*/'); }); it('should escape text with slash', async ({ page }) => { await page.setContent(`
/text
`); expect(await generate(page, 'div')).toBe('text=/.*\/text.*/'); }); it('should not use text for select', async ({ page }) => { await page.setContent(` `); expect(await generate(page, '[mark="1"]')).toBe(':nth-match(select, 2)'); }); it('should use ordinal for identical nodes', async ({ page }) => { await page.setContent(`
Text
Text
Text
Text
`); expect(await generate(page, 'div[mark="1"]')).toBe(`:nth-match(:text("Text"), 3)`); }); it('should prefer data-testid', async ({ page }) => { await page.setContent(`
Text
Text
Text
Text
`); expect(await generate(page, '[data-testid="a"]')).toBe('[data-testid="a"]'); }); it('should handle first non-unique data-testid', async ({ page }) => { await page.setContent(`
Text
Text
`); expect(await generate(page, 'div[mark="1"]')).toBe('[data-testid="a"]'); }); it('should handle second non-unique data-testid', async ({ page }) => { await page.setContent(`
Text
Text
`); expect(await generate(page, 'div[mark="1"]')).toBe(`:nth-match([data-testid="a"], 2)`); }); it('should use readable id', async ({ page }) => { await page.setContent(`
`); expect(await generate(page, 'div[mark="1"]')).toBe('#first-item'); }); it('should not use generated id', async ({ page }) => { await page.setContent(`
`); expect(await generate(page, 'div[mark="1"]')).toBe(`:nth-match(div, 2)`); }); it('should use has-text', async ({ page }) => { await page.setContent(`
Hello world
Hello world `); expect(await generate(page, 'a')).toBe(`a:has-text("Hello world")`); }); it('should chain text after parent', async ({ page }) => { await page.setContent(`
Hello world
Hello world `); expect(await generate(page, '[mark="1"]')).toBe(`a >> text=world`); }); it('should use parent text', async ({ page }) => { await page.setContent(`
Hello world
Goodbye world
`); expect(await generate(page, '[mark="1"]')).toBe(`text=Goodbye world >> span`); }); it('should separate selectors by >>', async ({ page }) => { await page.setContent(`
Text
Text
`); expect(await generate(page, '#id > div')).toBe('#id >> text=Text'); }); it('should trim long text', async ({ page }) => { await page.setContent(`
Text that goes on and on and on and on and on and on and on and on and on and on and on and on and on and on and on
Text that goes on and on and on and on and on and on and on and on and on and on and on and on and on and on and on
`); expect(await generate(page, '#id > div')).toBe(`#id >> text=Text that goes on and on and on and on and on and on and on and on and on and on`); }); it('should use nested ordinals', async ({ page }) => { await page.setContent(` `); expect(await generate(page, 'c[mark="1"]')).toBe('b:nth-child(2) c'); }); it('should not use input[value]', async ({ page }) => { await page.setContent(` `); expect(await generate(page, 'input[mark="1"]')).toBe(':nth-match(input, 2)'); }); it.describe('should prioritise input element attributes correctly', () => { it('name', async ({ page }) => { await page.setContent(``); expect(await generate(page, 'input')).toBe('input[name="foobar"]'); }); it('placeholder', async ({ page }) => { await page.setContent(``); expect(await generate(page, 'input')).toBe('[placeholder="foobar"]'); }); it('type', async ({ page }) => { await page.setContent(``); expect(await generate(page, 'input')).toBe('input[type="text"]'); }); }); it('should find text in shadow dom', async ({ page }) => { await page.setContent(`
`); await page.$eval('div', div => { const shadowRoot = div.attachShadow({ mode: 'open' }); const span = document.createElement('span'); span.textContent = 'Target'; shadowRoot.appendChild(span); }); expect(await generate(page, 'span')).toBe('text=Target'); }); it('should match in shadow dom', async ({ page }) => { await page.setContent(`
`); await page.$eval('div', div => { const shadowRoot = div.attachShadow({ mode: 'open' }); const input = document.createElement('input'); shadowRoot.appendChild(input); }); expect(await generate(page, 'input')).toBe('input'); }); it('should match in deep shadow dom', async ({ page }) => { await page.setContent(`
`); await page.$eval('div', div1 => { const shadowRoot1 = div1.attachShadow({ mode: 'open' }); const input1 = document.createElement('input'); shadowRoot1.appendChild(input1); const divExtra3 = document.createElement('div'); shadowRoot1.append(divExtra3); const div2 = document.createElement('div'); shadowRoot1.append(div2); const shadowRoot2 = div2.attachShadow({ mode: 'open' }); const input2 = document.createElement('input'); input2.setAttribute('value', 'foo'); shadowRoot2.appendChild(input2); }); expect(await generate(page, 'input[value=foo]')).toBe(':nth-match(input, 3)'); }); it('should work in dynamic iframes without navigation', async ({ page }) => { await page.setContent(`
`); const [frame] = await Promise.all([ page.waitForEvent('frameattached'), page.evaluate(() => { return new Promise(f => { const iframe = document.createElement('iframe'); iframe.onload = () => { iframe.contentDocument.body.innerHTML = '
Target
'; f(); }; document.body.appendChild(iframe); }); }), ]); expect(await generate(frame, 'div')).toBe('text=Target'); }); it('should use the name attributes for elements that can have it', async ({ page }) => { for (const tagName of ['button', 'input', 'textarea']) { await page.setContent(`
<${tagName} name="foo"><${tagName} name="bar">
`); expect(await generate(page, '[name=bar]')).toBe(`${tagName}[name="bar"]`); } }); it('should work with tricky ids', async ({page}) => { await page.setContent(``); expect(await generate(page, 'button')).toBe('[id="this:is-my-tricky.id"]'); }); });