Hi, I am running E2E on my angular application using Protractor. I am running into a very weird problem. I am using the Bootstrap Dropdown which has some options. I need to click on one of the options. I referred this answer which tries to do something similar, but doesn't work for me:
http://stackoverflow.com/questions/28803109/protractor-how-to-select-heavily-nested-dropdown-element?lq=1 The HTML of the Dropdown looks like: http://pastebin.com/iZ8gHuzn The test contains the following code: element(by.css('.dropdown-toggle')).click().then(function(){ //click on rename }); On running the test, there is a small flicker over the dropdown toggle button, and it seems that the button is clicked. However, the dropdown that should be shown is not shown. As a result of this, I am not able to simulate a click to rename. Am I doing something wrong? Regards, Saurabh -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
