fix: chrome://process-internals
failing to load (#41540)
fix: chrome://process-internals failing to load Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
This commit is contained in:
parent
35099d9289
commit
d3b182f8b9
2 changed files with 6 additions and 2 deletions
|
@ -2113,7 +2113,8 @@ describe('chromium features', () => {
|
|||
'chrome://gpu',
|
||||
'chrome://media-internals',
|
||||
'chrome://tracing',
|
||||
'chrome://webrtc-internals'
|
||||
'chrome://webrtc-internals',
|
||||
'chrome://process-internals'
|
||||
];
|
||||
|
||||
for (const url of urls) {
|
||||
|
@ -2121,8 +2122,9 @@ describe('chromium features', () => {
|
|||
it('loads the page successfully', async () => {
|
||||
const w = new BrowserWindow({ show: false });
|
||||
await w.loadURL(url);
|
||||
const host = url.substring('chrome://'.length);
|
||||
const pageExists = await w.webContents.executeJavaScript(
|
||||
"window.hasOwnProperty('chrome') && window.chrome.hasOwnProperty('send')"
|
||||
`window.hasOwnProperty('chrome') && window.location.host === '${host}'`
|
||||
);
|
||||
expect(pageExists).to.be.true();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue