| 
									
										
										
										
											2020-08-03 13:41:48 -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. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-04-02 21:07:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-25 15:05:50 -08:00
										 |  |  | import { browserTest as it, expect } from '../config/browserTest'; | 
					
						
							|  |  |  | import { attachFrame } from '../config/utils'; | 
					
						
							| 
									
										
										
										
											2023-06-02 15:02:54 -07:00
										 |  |  | import { chromiumVersionLessThan } from '../config/utils'; | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should work', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   { | 
					
						
							|  |  |  |     const context = await browser.newContext(); | 
					
						
							|  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |     expect(await page.evaluate(() => navigator.userAgent)).toContain('Mozilla'); | 
					
						
							|  |  |  |     await context.close(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     const context = await browser.newContext({ userAgent: 'foobar' }); | 
					
						
							|  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |     const [request] = await Promise.all([ | 
					
						
							|  |  |  |       server.waitForRequest('/empty.html'), | 
					
						
							|  |  |  |       page.goto(server.EMPTY_PAGE), | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     expect(request.headers['user-agent']).toBe('foobar'); | 
					
						
							|  |  |  |     await context.close(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should work for subframes', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   { | 
					
						
							|  |  |  |     const context = await browser.newContext(); | 
					
						
							|  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |     expect(await page.evaluate(() => navigator.userAgent)).toContain('Mozilla'); | 
					
						
							|  |  |  |     await context.close(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     const context = await browser.newContext({ userAgent: 'foobar' }); | 
					
						
							|  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |     const [request] = await Promise.all([ | 
					
						
							|  |  |  |       server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2020-09-18 15:52:14 -07:00
										 |  |  |       attachFrame(page, 'frame1', server.EMPTY_PAGE), | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |     ]); | 
					
						
							|  |  |  |     expect(request.headers['user-agent']).toBe('foobar'); | 
					
						
							|  |  |  |     await context.close(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should emulate device user-agent', async ({ browser, server, playwright }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   { | 
					
						
							|  |  |  |     const context = await browser.newContext(); | 
					
						
							|  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |     await page.goto(server.PREFIX + '/mobile.html'); | 
					
						
							|  |  |  |     expect(await page.evaluate(() => navigator.userAgent)).not.toContain('iPhone'); | 
					
						
							|  |  |  |     await context.close(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2020-08-26 14:16:35 -07:00
										 |  |  |     const context = await browser.newContext({ userAgent: playwright.devices['iPhone 6'].userAgent }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |     await page.goto(server.PREFIX + '/mobile.html'); | 
					
						
							|  |  |  |     expect(await page.evaluate(() => navigator.userAgent)).toContain('iPhone'); | 
					
						
							|  |  |  |     await context.close(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should make a copy of default options', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   const options = { userAgent: 'foobar' }; | 
					
						
							|  |  |  |   const context = await browser.newContext(options); | 
					
						
							|  |  |  |   options.userAgent = 'wrong'; | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							|  |  |  |     page.goto(server.EMPTY_PAGE), | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   expect(request.headers['user-agent']).toBe('foobar'); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2023-05-05 17:45:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-02 15:02:54 -07:00
										 |  |  | it('custom user agent for download', async ({ server, contextFactory, browserVersion, browserName }) => { | 
					
						
							| 
									
										
										
										
											2023-05-05 17:45:30 -07:00
										 |  |  |   it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/22843' }); | 
					
						
							| 
									
										
										
										
											2023-06-02 15:02:54 -07:00
										 |  |  |   it.skip(browserName === 'chromium' && chromiumVersionLessThan(browserVersion, '116.0.0.0'), 'https://chromium-review.googlesource.com/c/chromium/src/+/4554578'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   server.setRoute('/download', (req, res) => { | 
					
						
							|  |  |  |     res.setHeader('Content-Type', 'application/octet-stream'); | 
					
						
							|  |  |  |     res.setHeader('Content-Disposition', 'attachment'); | 
					
						
							|  |  |  |     res.end(`Hello world`); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-05 17:45:30 -07:00
										 |  |  |   const context = await contextFactory({ userAgent: 'MyCustomUA' }); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await page.setContent(`<a id="download" download="name" href="/download">Download</a>`); | 
					
						
							|  |  |  |   const serverRequest = server.waitForRequest('/download'); | 
					
						
							|  |  |  |   page.click('#download').catch(e => {}); | 
					
						
							|  |  |  |   const req = await serverRequest; | 
					
						
							|  |  |  |   expect(req.headers['user-agent']).toBe('MyCustomUA'); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2024-01-25 07:34:11 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | it('should work for navigator.userAgentData and sec-ch-ua headers', async ({ playwright, browserName, browser, server }) => { | 
					
						
							|  |  |  |   it.skip(browserName !== 'chromium', 'This API is Chromium-only'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     const context = await browser.newContext(); | 
					
						
							|  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |     const [request] = await Promise.all([ | 
					
						
							|  |  |  |       server.waitForRequest('/empty.html'), | 
					
						
							|  |  |  |       page.goto(server.EMPTY_PAGE), | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     expect.soft(request.headers['sec-ch-ua']).toContain(`"Chromium"`); | 
					
						
							|  |  |  |     expect.soft(request.headers['sec-ch-ua-mobile']).toBe(`?0`); | 
					
						
							|  |  |  |     expect.soft(request.headers['sec-ch-ua-platform']).toBeTruthy(); | 
					
						
							|  |  |  |     expect.soft(await page.evaluate(() => (window.navigator as any).userAgentData.toJSON())).toEqual( | 
					
						
							|  |  |  |         expect.objectContaining({ mobile: false }) | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |     await context.close(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     const context = await browser.newContext(playwright.devices['Pixel 7']); | 
					
						
							|  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |     const [request] = await Promise.all([ | 
					
						
							|  |  |  |       server.waitForRequest('/empty.html'), | 
					
						
							|  |  |  |       page.goto(server.EMPTY_PAGE), | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     expect.soft(request.headers['sec-ch-ua']).toContain(`"Chromium"`); | 
					
						
							|  |  |  |     expect.soft(request.headers['sec-ch-ua-mobile']).toBe(`?1`); | 
					
						
							|  |  |  |     expect.soft(request.headers['sec-ch-ua-platform']).toBe(`"Android"`); | 
					
						
							|  |  |  |     expect.soft(await page.evaluate(() => (window.navigator as any).userAgentData.toJSON())).toEqual( | 
					
						
							|  |  |  |         expect.objectContaining({ mobile: true, platform: 'Android' }) | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |     await context.close(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }); |