-
Notifications
You must be signed in to change notification settings - Fork 32
Protractor and Stomp #133
Description
We are working with the latest release of both Angular 7 and Stomp 7.2.0.
We ran into a conflict with our existing protractor tests when we upgraded from StompRService and StompConfig to RxStompService and RxStompConfig. Injecting the RxStompService into the constructor breaks the existing protractor test with the below error
`
- Failed: script timeout: result was not received in 11 seconds
(Session info: chrome=71.0.3578.98)
(Driver info: chromedriver=2.46.628402 (536cd7adbad73a3783fdc2cab92ab2ba7ec361e1),platform=Windows NT 10.0.17134 x86_64)
`
We created a new CLI project to reproduce the issue. As part of working with this solution we found that adding browser.waitForAngularEnabled(false); enabled a given test to run successfully.
Unfortunately, in our existing project, we have hundreds of tests and this workaround will not work in most instances. Since we monitor the RabbitMQ queues at the application level, we would be interested in any suggestions or a solution that allowed us to bypass this issue for our protractor tests.
Thanks
Bill & the Hunter Industries Pilot Mob