At the moment, I am utilizing protractor along with Selenium WebDriver.
I am encountering an issue as described below:
Upon clicking a button using protractor on a HTML page, a window pops up. This window contains a text box labeled "Description":
<input type="Text" name="Description" ... />
When attempting the following:
element(by.css('[name="Description"]')).sendKeys("rabbababab");
The browser does not respond, and even though no error is thrown by protractor, no text is entered into the TextBox. Unfortunately, the name attribute is the only way to identify the input-TextBox.
What could be causing this issue?