This repository was archived by the owner on Jul 29, 2024. It is now read-only.
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
Element explorer hangs in protractor >=1.7 if you have node >=0.10.31 #1890
Closed
Description
Element explorer hangs in versions 1.7 or later.
NOTE: this behavior only appears if you are on node version 0.10.31 or above
Under closer look, you should see that this delay is not indeterministic. To be exactly:
if you wait n seconds to enter a command, the delay will be (n + time to execute command) seconds.
In other words, if you execute a simple command like var x = 3
, which takes no time to execute, the delay is equal to the amount of time you waited before entering the command.
Try this:
$ //start element explorer
> var x = 3 //should return immediately
> // now wait 10 seconds, and then type `var x = 3`
> // should wait ~10s before returning.
An issue has been filed with additional information here: nodejs/node-v0.x-archive#9333