How to getText on an input in protractor
This is answered in the Protractor FAQ: https://github.com/angular/protractor/blob/master/docs/faq.md#the-result-of-gettext-from-an-input-element-is-always-empty The result of getText from an input element is always empty This is a webdriver quirk. and elements always have empty getText values. Instead, try: element.getAttribute(‘value’) As for question 2, yes, you should be able to use a fully qualified name for by.binding. I suspect that your … Read more