반응형

Cypress를 하다보면 아래와 같은 문구가 심심치 않게 나온다.

 

cypress cannot read property 'updatedata' of undefined

 

이 문제는 화면상의 element가 보이지 않아서 생기는 문제로 scrollTo로 해당 element가 보이도록 이동하면 해결 할 수 있다.

 

예 : 화면 상단으로 이동 cy.scrollTo(0,0) 

반응형

'software testing > cypress' 카테고리의 다른 글

Mac에서 Cypress 설치방법  (0) 2020.03.02
반응형

Mac에서 Cypress 설치방법

1. 터미널을 열고 npm install cypress --save-dev 입력 (만약 설치가 안되면 npm을 설치 해야함)

 

 

2. cypress 실행 

   > node_modules/.bin/cypress open

 

반응형

'software testing > cypress' 카테고리의 다른 글

cypress cannot read property 'updatedata' of undefined  (0) 2020.03.02

+ Recent posts