I have a setting in my angular based website that turns a dropdown on and off. If it is off, then it does not show on the main page.
With Protractor, I need to check to
I got it working by doing this:
expect(element(by.css('css')).isPresent()).toBeFalsy();