| 
									
										
										
										
											2021-07-27 15:27:36 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * 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'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-10 19:42:52 +01:00
										 |  |  | it('should respect first() and last() @smoke', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2021-07-27 15:27:36 -07:00
										 |  |  |   await page.setContent(`
 | 
					
						
							|  |  |  |   <section> | 
					
						
							|  |  |  |     <div><p>A</p></div> | 
					
						
							|  |  |  |     <div><p>A</p><p>A</p></div> | 
					
						
							|  |  |  |     <div><p>A</p><p>A</p><p>A</p></div> | 
					
						
							|  |  |  |   </section>`);
 | 
					
						
							|  |  |  |   expect(await page.locator('div >> p').count()).toBe(6); | 
					
						
							|  |  |  |   expect(await page.locator('div').locator('p').count()).toBe(6); | 
					
						
							|  |  |  |   expect(await page.locator('div').first().locator('p').count()).toBe(1); | 
					
						
							| 
									
										
										
										
											2021-07-27 15:58:18 -07:00
										 |  |  |   expect(await page.locator('div').last().locator('p').count()).toBe(3); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should respect nth()', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2021-07-27 15:58:18 -07:00
										 |  |  |   await page.setContent(`
 | 
					
						
							|  |  |  |   <section> | 
					
						
							|  |  |  |     <div><p>A</p></div> | 
					
						
							|  |  |  |     <div><p>A</p><p>A</p></div> | 
					
						
							|  |  |  |     <div><p>A</p><p>A</p><p>A</p></div> | 
					
						
							|  |  |  |   </section>`);
 | 
					
						
							|  |  |  |   expect(await page.locator('div >> p').nth(0).count()).toBe(1); | 
					
						
							|  |  |  |   expect(await page.locator('div').nth(1).locator('p').count()).toBe(2); | 
					
						
							|  |  |  |   expect(await page.locator('div').nth(2).locator('p').count()).toBe(3); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should throw on capture w/ nth()', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2021-07-27 15:58:18 -07:00
										 |  |  |   await page.setContent(`<section><div><p>A</p></div></section>`); | 
					
						
							| 
									
										
										
										
											2021-08-11 11:06:09 -07:00
										 |  |  |   const e = await page.locator('*css=div >> p').nth(1).click().catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-07-27 15:58:18 -07:00
										 |  |  |   expect(e.message).toContain(`Can't query n-th element`); | 
					
						
							| 
									
										
										
										
											2021-07-27 15:27:36 -07:00
										 |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-07-28 15:44:44 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should throw on due to strictness', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2021-07-28 15:44:44 -07:00
										 |  |  |   await page.setContent(`<div>A</div><div>B</div>`); | 
					
						
							|  |  |  |   const e = await page.locator('div').isVisible().catch(e => e); | 
					
						
							|  |  |  |   expect(e.message).toContain(`strict mode violation`); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should throw on due to strictness 2', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2021-07-28 15:44:44 -07:00
										 |  |  |   await page.setContent(`<select><option>One</option><option>Two</option></select>`); | 
					
						
							|  |  |  |   const e = await page.locator('option').evaluate(e => {}).catch(e => e); | 
					
						
							|  |  |  |   expect(e.message).toContain(`strict mode violation`); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-12-03 09:27:06 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | it('should filter by text', async ({ page }) => { | 
					
						
							|  |  |  |   await page.setContent(`<div>Foobar</div><div>Bar</div>`); | 
					
						
							| 
									
										
										
										
											2021-12-14 15:37:31 -08:00
										 |  |  |   await expect(page.locator('div', { hasText: 'Foo' })).toHaveText('Foobar'); | 
					
						
							| 
									
										
										
										
											2021-12-03 09:27:06 -08:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | it('should filter by text 2', async ({ page }) => { | 
					
						
							|  |  |  |   await page.setContent(`<div>foo <span>hello world</span> bar</div>`); | 
					
						
							| 
									
										
										
										
											2021-12-14 15:37:31 -08:00
										 |  |  |   await expect(page.locator('div', { hasText: 'hello world' })).toHaveText('foo hello world bar'); | 
					
						
							| 
									
										
										
										
											2021-12-03 09:27:06 -08:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | it('should filter by regex', async ({ page }) => { | 
					
						
							|  |  |  |   await page.setContent(`<div>Foobar</div><div>Bar</div>`); | 
					
						
							| 
									
										
										
										
											2021-12-14 15:37:31 -08:00
										 |  |  |   await expect(page.locator('div', { hasText: /Foo.*/ })).toHaveText('Foobar'); | 
					
						
							| 
									
										
										
										
											2021-12-03 09:27:06 -08:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | it('should filter by text with quotes', async ({ page }) => { | 
					
						
							|  |  |  |   await page.setContent(`<div>Hello "world"</div><div>Hello world</div>`); | 
					
						
							| 
									
										
										
										
											2021-12-14 15:37:31 -08:00
										 |  |  |   await expect(page.locator('div', { hasText: 'Hello "world"' })).toHaveText('Hello "world"'); | 
					
						
							| 
									
										
										
										
											2021-12-03 09:27:06 -08:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | it('should filter by regex with quotes', async ({ page }) => { | 
					
						
							|  |  |  |   await page.setContent(`<div>Hello "world"</div><div>Hello world</div>`); | 
					
						
							| 
									
										
										
										
											2021-12-14 15:37:31 -08:00
										 |  |  |   await expect(page.locator('div', { hasText: /Hello "world"/ })).toHaveText('Hello "world"'); | 
					
						
							| 
									
										
										
										
											2021-12-03 09:27:06 -08:00
										 |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-12-07 19:33:04 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | it('should filter by regex and regexp flags', async ({ page }) => { | 
					
						
							|  |  |  |   await page.setContent(`<div>Hello "world"</div><div>Hello world</div>`); | 
					
						
							| 
									
										
										
										
											2021-12-14 15:37:31 -08:00
										 |  |  |   await expect(page.locator('div', { hasText: /hElLo "world"/i })).toHaveText('Hello "world"'); | 
					
						
							| 
									
										
										
										
											2021-12-07 19:33:04 -08:00
										 |  |  | }); | 
					
						
							| 
									
										
										
										
											2022-02-02 16:55:50 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-11 14:24:08 -07:00
										 |  |  | it('should filter by case-insensitive regex in a child', async ({ page }) => { | 
					
						
							|  |  |  |   it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/15348' }); | 
					
						
							|  |  |  |   await page.setContent(`<div class="test"><h5>Title Text</h5></div>`); | 
					
						
							|  |  |  |   await expect(page.locator('div', { hasText: /^title text$/i })).toHaveText('Title Text'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-14 08:23:11 -07:00
										 |  |  | it('should filter by case-insensitive regex in multiple children', async ({ page }) => { | 
					
						
							|  |  |  |   it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/15348' }); | 
					
						
							|  |  |  |   await page.setContent(`<div class="test"><h5>Title</h5> <h2><i>Text</i></h2></div>`); | 
					
						
							|  |  |  |   await expect(page.locator('div', { hasText: /^title text$/i })).toHaveClass('test'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | it('should filter by regex with special symbols', async ({ page }) => { | 
					
						
							|  |  |  |   it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/15348' }); | 
					
						
							|  |  |  |   await page.setContent(`<div class="test"><h5>First/"and"</h5><h2><i>Second\\</i></h2></div>`); | 
					
						
							|  |  |  |   await expect(page.locator('div', { hasText: /^first\/".*"second\\$/si })).toHaveClass('test'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-04 15:34:33 -08:00
										 |  |  | it('should support has:locator', async ({ page, trace }) => { | 
					
						
							|  |  |  |   it.skip(trace === 'on'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-02 16:55:50 -08:00
										 |  |  |   await page.setContent(`<div><span>hello</span></div><div><span>world</span></div>`); | 
					
						
							|  |  |  |   await expect(page.locator(`div`, { | 
					
						
							|  |  |  |     has: page.locator(`text=world`) | 
					
						
							|  |  |  |   })).toHaveCount(1); | 
					
						
							|  |  |  |   expect(await page.locator(`div`, { | 
					
						
							|  |  |  |     has: page.locator(`text=world`) | 
					
						
							|  |  |  |   }).evaluate(e => e.outerHTML)).toBe(`<div><span>world</span></div>`); | 
					
						
							|  |  |  |   await expect(page.locator(`div`, { | 
					
						
							|  |  |  |     has: page.locator(`text="hello"`) | 
					
						
							|  |  |  |   })).toHaveCount(1); | 
					
						
							|  |  |  |   expect(await page.locator(`div`, { | 
					
						
							|  |  |  |     has: page.locator(`text="hello"`) | 
					
						
							|  |  |  |   }).evaluate(e => e.outerHTML)).toBe(`<div><span>hello</span></div>`); | 
					
						
							|  |  |  |   await expect(page.locator(`div`, { | 
					
						
							|  |  |  |     has: page.locator(`xpath=./span`) | 
					
						
							|  |  |  |   })).toHaveCount(2); | 
					
						
							|  |  |  |   await expect(page.locator(`div`, { | 
					
						
							|  |  |  |     has: page.locator(`span`) | 
					
						
							|  |  |  |   })).toHaveCount(2); | 
					
						
							|  |  |  |   await expect(page.locator(`div`, { | 
					
						
							|  |  |  |     has: page.locator(`span`, { hasText: 'wor' }) | 
					
						
							|  |  |  |   })).toHaveCount(1); | 
					
						
							|  |  |  |   expect(await page.locator(`div`, { | 
					
						
							|  |  |  |     has: page.locator(`span`, { hasText: 'wor' }) | 
					
						
							|  |  |  |   }).evaluate(e => e.outerHTML)).toBe(`<div><span>world</span></div>`); | 
					
						
							|  |  |  |   await expect(page.locator(`div`, { | 
					
						
							|  |  |  |     has: page.locator(`span`), | 
					
						
							|  |  |  |     hasText: 'wor', | 
					
						
							|  |  |  |   })).toHaveCount(1); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-08 21:59:40 +01:00
										 |  |  | it('should support locator.filter', async ({ page, trace }) => { | 
					
						
							| 
									
										
										
										
											2022-04-25 20:06:18 +01:00
										 |  |  |   it.skip(trace === 'on'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   await page.setContent(`<section><div><span>hello</span></div><div><span>world</span></div></section>`); | 
					
						
							| 
									
										
										
										
											2022-05-08 21:59:40 +01:00
										 |  |  |   await expect(page.locator(`div`).filter({ hasText: 'hello' })).toHaveCount(1); | 
					
						
							|  |  |  |   await expect(page.locator(`div`, { hasText: 'hello' }).filter({ hasText: 'hello' })).toHaveCount(1); | 
					
						
							|  |  |  |   await expect(page.locator(`div`, { hasText: 'hello' }).filter({ hasText: 'world' })).toHaveCount(0); | 
					
						
							|  |  |  |   await expect(page.locator(`section`, { hasText: 'hello' }).filter({ hasText: 'world' })).toHaveCount(1); | 
					
						
							|  |  |  |   await expect(page.locator(`div`).filter({ hasText: 'hello' }).locator('span')).toHaveCount(1); | 
					
						
							|  |  |  |   await expect(page.locator(`div`).filter({ has: page.locator('span', { hasText: 'world' }) })).toHaveCount(1); | 
					
						
							|  |  |  |   await expect(page.locator(`div`).filter({ has: page.locator('span') })).toHaveCount(2); | 
					
						
							|  |  |  |   await expect(page.locator(`div`).filter({ | 
					
						
							| 
									
										
										
										
											2022-04-25 20:06:18 +01:00
										 |  |  |     has: page.locator('span'), | 
					
						
							|  |  |  |     hasText: 'world', | 
					
						
							|  |  |  |   })).toHaveCount(1); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-03 10:33:33 +01:00
										 |  |  | it('should enforce same frame for has/leftOf/rightOf/above/below/near', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2022-02-02 16:55:50 -08:00
										 |  |  |   await page.goto(server.PREFIX + '/frames/two-frames.html'); | 
					
						
							|  |  |  |   const child = page.frames()[1]; | 
					
						
							| 
									
										
										
										
											2022-05-12 18:50:19 +01:00
										 |  |  |   for (const option of ['has']) { | 
					
						
							| 
									
										
										
										
											2022-05-03 10:33:33 +01:00
										 |  |  |     let error; | 
					
						
							|  |  |  |     try { | 
					
						
							|  |  |  |       page.locator('div', { [option]: child.locator('span') }); | 
					
						
							|  |  |  |     } catch (e) { | 
					
						
							|  |  |  |       error = e; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     expect(error.message).toContain(`Inner "${option}" locator must belong to the same frame.`); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2022-09-27 15:13:56 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | it('alias methods coverage', async ({ page }) => { | 
					
						
							|  |  |  |   await page.setContent(`<div><button>Submit</button></div>`); | 
					
						
							| 
									
										
										
										
											2022-09-29 11:50:52 -08:00
										 |  |  |   await expect(page.locator('button')).toHaveCount(1); | 
					
						
							|  |  |  |   await expect(page.locator('div').locator('button')).toHaveCount(1); | 
					
						
							|  |  |  |   await expect(page.locator('div').getByRole('button')).toHaveCount(1); | 
					
						
							|  |  |  |   await expect(page.mainFrame().locator('button')).toHaveCount(1); | 
					
						
							| 
									
										
										
										
											2022-09-27 15:13:56 -08:00
										 |  |  | }); |