Bruno Baia
Bruno Baia
Same pb here when trying to use the `MemoizedSelector.projector` in tests.
Microsoft Edge is supported since v0.8.1 You need to keep drivers up to date because your browser is automatically updated. Plz update the "Selenium.WebDriver.MicrosoftWebDriver" package and try again.
Add a timeout for async scripts : ``` csharp // Required for TestForAngular and WaitForAngular scripts driver.Manage().Timeouts().SetScriptTimeout(TimeSpan.FromSeconds(5)); ```
@disophisis did you resolve your problem ? What angular version are you using ?
I could fix NgNavigation.Refresh(). Available in version 0.9.1
Good point @rblatz See exemple behind to disable the ngAnimate : ``` csharp NgModule disableNgAnimateModule = new NgModule("noNgAnimateModule", @" angular.module('noNgAnimateModule', []).run(['$animate', function($animate) { // Disable animations $animate.enabled(false); }]);"); var ngDriver...
Did you try creating an `NgDriver` instance using the `rootElement` parameter ? It allows you to specify the CSS selector for an element on which to find Angular.
Which Protractor version are you using ? (if you are not using the latest v.10.x, try it) Are you using $timeout for continuous polling ?
Added test and fixed build
@eddiemonge comments applied and branch rebased !