mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	This patch introduces 109 "#smoke" tests - a subset of tests that makes sure that basic Playwright functionality works. This set is loosely defined; feel free to add/remove tests to the set. The only goal is to keep this set minimal & fast to run. I tried to pick tests so that various parts of Playwright functionality are exercised.
		
			
				
	
	
		
			63 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * 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 query existing element #smoke', async ({ page, server }) => {
 | 
						|
  await page.goto(server.PREFIX + '/playground.html');
 | 
						|
  await page.setContent('<html><body><div class="second"><div class="inner">A</div></div></body></html>');
 | 
						|
  const html = page.locator('html');
 | 
						|
  const second = html.locator('.second');
 | 
						|
  const inner = second.locator('.inner');
 | 
						|
  const content = await page.evaluate(e => e.textContent, await inner.elementHandle());
 | 
						|
  expect(content).toBe('A');
 | 
						|
});
 | 
						|
 | 
						|
it('should query existing elements', async ({ page, server }) => {
 | 
						|
  await page.setContent('<html><body><div>A</div><br/><div>B</div></body></html>');
 | 
						|
  const html = page.locator('html');
 | 
						|
  const elements = await html.locator('div').elementHandles();
 | 
						|
  expect(elements.length).toBe(2);
 | 
						|
  const promises = elements.map(element => page.evaluate(e => e.textContent, element));
 | 
						|
  expect(await Promise.all(promises)).toEqual(['A', 'B']);
 | 
						|
});
 | 
						|
 | 
						|
it('should return empty array for non-existing elements', async ({ page, server }) => {
 | 
						|
  await page.setContent('<html><body><span>A</span><br/><span>B</span></body></html>');
 | 
						|
  const html = page.locator('html');
 | 
						|
  const elements = await html.locator('div').elementHandles();
 | 
						|
  expect(elements.length).toBe(0);
 | 
						|
});
 | 
						|
 | 
						|
 | 
						|
it('xpath should query existing element', async ({ page, server }) => {
 | 
						|
  await page.goto(server.PREFIX + '/playground.html');
 | 
						|
  await page.setContent('<html><body><div class="second"><div class="inner">A</div></div></body></html>');
 | 
						|
  const html = page.locator('html');
 | 
						|
  const second = html.locator(`xpath=./body/div[contains(@class, 'second')]`);
 | 
						|
  const inner = second.locator(`xpath=./div[contains(@class, 'inner')]`);
 | 
						|
  const content = await page.evaluate(e => e.textContent, await inner.elementHandle());
 | 
						|
  expect(content).toBe('A');
 | 
						|
});
 | 
						|
 | 
						|
it('xpath should return null for non-existing element', async ({ page, server }) => {
 | 
						|
  await page.setContent('<html><body><div class="second"><div class="inner">B</div></div></body></html>');
 | 
						|
  const html = page.locator('html');
 | 
						|
  const second = await html.locator(`xpath=/div[contains(@class, 'third')]`).elementHandles();
 | 
						|
  expect(second).toEqual([]);
 | 
						|
});
 |