16 lines
529 B
JavaScript
16 lines
529 B
JavaScript
describe('angular-material input component page', function() {
|
|
const EC = protractor.ExpectedConditions;
|
|
|
|
it('Should change input component value', async() => {
|
|
await browser.get('https://material.angular.io/components/input/examples');
|
|
|
|
await browser.wait(EC.elementToBeClickable($('.mat-button-wrapper > .mat-icon')), 5000);
|
|
|
|
const emailInputField = $$('#mat-input-1').get(1);
|
|
|
|
await emailInputField.sendKeys('invalid');
|
|
|
|
expect($('mat-error').isPresent()).toBe(true);
|
|
});
|
|
});
|