I have an angular2 app I want to test with protractor.
In this app I have a page with a graph that is being updated in regular intervals with autogenerated data.
Apparently one feature of protractor is waiting for scripts and http calls to finish before executing test code. However, if there is a constantly polling script that never finishes, protractor will wait forever and time out after a certain time.
In angular1 this could be solved by implementing the polling with $interval
, which protractor does not wait for. Unfortunately in angular2 there is no $interval
and the correct way to implement polling seems to be Observable.interval
, so this is what my code looks like:
Observable.interval(500)
.map(x => this.getRandomData())
.subscribe(data => this.updateGraph(data));
When testing a page where this code is running, protractor will time out. It waits for the page to finish loading and thinks this script will exit sometime (when in fact it runs forever).
Is there an interval mechanism in angular2 that protractor recognizes, so that it doesn't wait for the polling to finish before running the UI tests?
If not, how can I tell protractor not to wait for this interval to finish before executing more test code?
EDIT: To clarify, the timeout problem already existed in protractor with angular1, but could be fixed by using $interval
, see:
- Timed out waiting for Protractor to synchronize with the page after 50001ms
- How to implement intervals in protractor/selenium
This doesn't work in angular2 because there is no $interval
.