WebStorm debugging mode does not work and receives a message Process terminated with exit code -1073741819 (0xC0000005)

I recently downloaded WebStorm 11.0.3 to run Protractor test cases. My test cases run normally during normal operation (i.e., they are launched from the launch configurations), but when I try to run my test cases in debug mode, nothing happens and I get the following in the console:

"C:\Program Files (x86)\JetBrains\WebStorm 11.0.3\bin\runnerw.exe" "C:\Program Files\nodejs\node.exe" --debug-brk=58467 --nolazy c:\Users\daobrien15\AppData\Roaming\npm\node_modules\protractor\lib\cli.js conf.js
Debugger listening on port 58467
Using the selenium server at http://127.0.0.1:4444/wd/hub
[launcher] Running 1 instances of WebDriver

Process finished with exit code -1073741819 (0xC0000005)

When I run debug for Firefox, it just launches the first Firefox screen launch and does nothing. When I run it against Chrome, it just loads a blank page with data:,into the URL bar, and also does nothing.

I am using the following:

OS: Win 7 (64 bit)

Protractor: 3.0.0

Selenium webdriver: 2.48.2

Firefox: 35,

Chrome: 47.0.2526.111 ()

webmanager . , directConnect conf.js:

directConnect: true,

.

+4
2

. node.js -: node --version 5,2, . node 5.5.0 ( ), .

. Webstorm 9 10,

C:\Program Files (x86)\JetBrains\WebStorm 9.0\bin

WebStorm64.exe.vmoptions WebStorm.exe.vmoption

-Dnodejs.debugger.use.jb.support=false

. Webstorm 11, , WebStorm 9/10.

, .

+3

. @user3552, . node node. .

--debug-brk=8081

exec ,

 /home/veysel/.nave/installed/5.0.0/bin/node --debug-brk=37621 -debug-brk=8081 --expose_debug_as=v8debug /opt/lampp/htdocs/kart/server.js 8080

exec, .

  /home/veysel/.nave/installed/5.0.0/bin/node --debug-brk=37621 --expose_debug_as=v8debug /opt/lampp/htdocs/kart/server.js 8080
0

Source: https://habr.com/ru/post/1624836/


All Articles