In the same page how to switch from non-angular to angular, it is clicking on non-angular elements but not on angular, when clicking on non-angular lookup then angular window(Popup) will open
-
1What's the error and relevant html source?Vishal Aggarwal– Vishal Aggarwal2018年04月07日 18:47:15 +00:00Commented Apr 7, 2018 at 18:47
1 Answer 1
If I understand your question correctly. The solution is:
browser.waitForAngularEnabled(false);
- for disabling Angular
browser.waitForAngularEnabled(true);
- for enabling Angular
Then switch to the new window and search the angular element.
-
1Your definition seems incorrect or incomplete. The method you referenced doesn't disable Angular but it does change how Protractor works/waits for different applications to finish loading.Cherree– Cherree2018年03月07日 16:22:31 +00:00Commented Mar 7, 2018 at 16:22
-
It’s referenced to official documentation from Protractor. It says If you need to navigate to a page which does not use Angular, you can turn off waiting for Angular by setting browser.waitForAngularEnabled(false).Jack– Jack2018年03月14日 18:43:21 +00:00Commented Mar 14, 2018 at 18:43
-
1I agree with the explanation in your comment but it's inconsistent with your original answer. Sorry for the pedantry.Cherree– Cherree2018年03月14日 21:22:07 +00:00Commented Mar 14, 2018 at 21:22
Explore related questions
See similar questions with these tags.