New issue
Advanced search Search tips

Issue 814568 link

Starred by 2 users

Issue metadata

Status: Fixed
Owner:
Closed: Sep 5
Components:
EstimatedDays: ----
NextAction: ----
OS: Mac
Pri: 3
Type: Bug



Sign in to add a comment

DevTools: x-devtools-emulate-network-conditions-client-id header shows up on failed requests

Project Member Reported by lushnikov@chromium.org, Feb 22 2018

Issue description

Chrome: 66


Filed upstream: https://github.com/GoogleChrome/puppeteer/issues/2068

Run the following pptr script (using pptr v1.1.0):


const puppeteer = require('puppeteer');
(async () => {
  const browser = await puppeteer.launch();
  const page = await browser.newPage();
  page.on('request', r => console.log(
      r.headers()['x-devtools-emulate-network-conditions-client-id']
  ));
  await page.goto('http://foo.bar/').catch(e => void 0);
  await browser.close();
})();
 
Status: Fixed (was: Assigned)
This works fine for me on Chromium r588429.

Sign in to add a comment