
This commit updates the docs examples to be compatible with the `prefer-const` tslint rule. This is in preparation of updating the docs examples `tslint.json` to match the one generated for new Angular CLI apps in a future commit. PR Close #38143
28 lines
890 B
TypeScript
28 lines
890 B
TypeScript
import { browser, element, by } from 'protractor';
|
|
|
|
/* tslint:disable:quotemark */
|
|
describe('Dynamic Form', () => {
|
|
|
|
beforeAll(() => {
|
|
browser.get('');
|
|
});
|
|
|
|
it('should submit form', () => {
|
|
const firstNameElement = element.all(by.css('input[id=firstName]')).get(0);
|
|
expect(firstNameElement.getAttribute('value')).toEqual('Bombasto');
|
|
|
|
const emailElement = element.all(by.css('input[id=emailAddress]')).get(0);
|
|
const email = 'test@test.com';
|
|
emailElement.sendKeys(email);
|
|
expect(emailElement.getAttribute('value')).toEqual(email);
|
|
|
|
element(by.css('select option[value="solid"]')).click();
|
|
|
|
const saveButton = element.all(by.css('button')).get(0);
|
|
saveButton.click().then(() => {
|
|
expect(element(by.xpath("//strong[contains(text(),'Saved the following values')]")).isPresent()).toBe(true);
|
|
});
|
|
});
|
|
|
|
});
|