debugger running MS Edge Dev sets navigator.webdriver
dkent600 opened this issue · 0 comments
dkent600 commented
- VS Code Version:
Version: 1.39.2 (user setup)
Commit: 6ab598523be7a800d7f3eb4d92d7ab9a66069390
Date: 2019-10-15T15:35:18.241Z
Electron: 4.2.10
Chrome: 69.0.3497.128
Node.js: 10.11.0
V8: 6.9.427.31-electron.0
OS: Windows_NT x64 10.0.18362
- Log file (set
"trace": true
in launch config):
The log file is too big to attach here. You can download at: https://1drv.ms/t/s!AtFWIxI-QQD9l98NjkNNxO4wOJFk2Q?e=zb7mQ5
Steps to reproduce:
When I run the VSCode debugger against MS Edge Dev it sets navigator.webdriver
to true. This is not supposed to happen. Doesn't happen if I run against Chrome.
Debugger configuration:
{
"name": "Edge with Webpack Debugging Server",
"type": "edge",
"version": "dev",
"request": "launch",
"url": "http://localhost:3000",
"webRoot": "${workspaceRoot}/src",
"userDataDir": "${workspaceRoot}/.chrome",
// "trace": true,
"sourceMaps": true,
"smartStep": true,
"skipFiles": [
"${workspaceFolder}/src/node_modules/tslib/*.js",
],
"sourceMapPathOverrides": {
"webpack:///./src/*": "${webRoot}/*"
},
"runtimeArgs": [
"--disable-session-crashed-bubble",
"--disable-infobars"
],
"internalConsoleOptions": "openOnSessionStart"
},