/** * Copyright 2018 Google Inc. All rights reserved. * Modifications 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 as it, expect } from './pageTest'; it('should have a nice preview', async ({ page, server }) => { await page.goto(`${server.PREFIX}/dom.html`); const outer = page.locator('#outer'); const inner = outer.locator('#inner'); const check = page.locator('#check'); const text = await inner.evaluateHandle(e => e.firstChild); await page.evaluate(() => 1); // Give them a chance to calculate the preview. expect.soft(String(outer)).toBe(`locator('#outer')`); expect.soft(String(inner)).toBe(`locator('#outer').locator('#inner')`); expect.soft(String(text)).toBe(`JSHandle@#text=Text,↵more text`); expect.soft(String(check)).toBe(`locator('#check')`); }); it('getAttribute should work', async ({ page, server }) => { await page.goto(`${server.PREFIX}/dom.html`); const locator = page.locator('#outer'); expect(await locator.getAttribute('name')).toBe('value'); expect(await locator.getAttribute('foo')).toBe(null); expect(await page.getAttribute('#outer', 'name')).toBe('value'); expect(await page.getAttribute('#outer', 'foo')).toBe(null); }); it('inputValue should work', async ({ page, server }) => { await page.goto(`${server.PREFIX}/dom.html`); await page.selectOption('#select', 'foo'); expect(await page.inputValue('#select')).toBe('foo'); await page.fill('#textarea', 'text value'); expect(await page.inputValue('#textarea')).toBe('text value'); await page.fill('#input', 'input value'); expect(await page.inputValue('#input')).toBe('input value'); const locator = page.locator('#input'); expect(await locator.inputValue()).toBe('input value'); expect(await page.inputValue('#inner').catch(e => e.message)).toContain('Node is not an , `); await page.$eval('textarea', t => t.readOnly = true); const input1 = page.locator('#input1'); expect(await input1.isEditable()).toBe(false); expect(await page.isEditable('#input1')).toBe(false); const input2 = page.locator('#input2'); expect(await input2.isEditable()).toBe(true); expect(await page.isEditable('#input2')).toBe(true); const textarea = page.locator('textarea'); expect(await textarea.isEditable()).toBe(false); expect(await page.isEditable('textarea')).toBe(false); }); it('isChecked should work', async ({ page }) => { await page.setContent(`
Not a checkbox
`); const element = page.locator('input'); expect(await element.isChecked()).toBe(true); expect(await page.isChecked('input')).toBe(true); await element.evaluate(input => (input as HTMLInputElement).checked = false); expect(await element.isChecked()).toBe(false); expect(await page.isChecked('input')).toBe(false); const error = await page.isChecked('div').catch(e => e); expect(error.message).toContain('Not a checkbox or radio button'); }); it('isChecked should work for indeterminate input', async ({ page }) => { it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/20190' }); await page.setContent(``); await page.locator('input').evaluate((e: HTMLInputElement) => e.indeterminate = true); expect(await page.locator('input').isChecked()).toBe(true); await expect(page.locator('input')).toBeChecked(); await page.locator('input').uncheck(); expect(await page.locator('input').isChecked()).toBe(false); await expect(page.locator('input')).not.toBeChecked(); }); it('allTextContents should work', async ({ page }) => { await page.setContent(`
A
B
C
`); expect(await page.locator('div').allTextContents()).toEqual(['A', 'B', 'C']); }); it('allInnerTexts should work', async ({ page }) => { await page.setContent(`
A
B
C
`); expect(await page.locator('div').allInnerTexts()).toEqual(['A', 'B', 'C']); }); it('should return page', async ({ page, server }) => { await page.goto(server.PREFIX + '/frames/two-frames.html'); const outer = page.locator('#outer'); expect(outer.page()).toBe(page); const inner = outer.locator('#inner'); expect(inner.page()).toBe(page); const inFrame = page.frames()[1].locator('div'); expect(inFrame.page()).toBe(page); });