반응형
[Angular7] e2e
//Input Tag에 abc 입력 후 value 값이 동일한지 확인
it('some test', async () => {
const input1 = element(by.id('input1'));
await input1.sendKeys('abc');
expect(await input1.getAttribute('value')).toEqual('abc');
});
반응형
'엉터리 개발 이야기 > angular2+' 카테고리의 다른 글
[Angular8] Angular Library 만들기 with angular@cli (0) | 2020.02.24 |
---|---|
webdriver-manager update 시 failed to make github request, rate limit reached (0) | 2020.01.16 |
[Angular7] e2e test (0) | 2019.05.30 |
npx를 활용하여 angular cli 로 프로젝트 생성하기 (0) | 2019.05.28 |
[angular2+ cli] ELOOP: too many symbolic links encountered, 해결방법 (0) | 2018.02.22 |