When I am sending email through protractor to my page it is converting that to uppercase .
Page.inputs.email.sendKeys('test@abc.com.au');
Can somebody please help me to know the reason why it is happening and how can I correct it.
Thanks
When I am sending email through protractor to my page it is converting that to uppercase .
Page.inputs.email.sendKeys('test@abc.com.au');
Can somebody please help me to know the reason why it is happening and how can I correct it.
Thanks
First check your caps lock is not enabled when you are testing and try below given code lines.
Page.inputs.email.sendKeys(protractor.Key.SHIFT);
Page.inputs.email.sendKeys('test@abc.com.au');