npm install
npm run dev
npm run build-dev
npm run build
npm run e2e:open
npm run e2e:run
Description: 입력한 층의 버튼을 활성화 시킨다.
Syntax: activateButton( targetFloor )
Parameter
targetFloor
Type: Integer Description: 버튼을 활성화 하려는 층의 숫자 ( 범위 : 1 ~ 생성된 층수 )
Returns: undefined
Example:
activateButton(4);
Description: 입력한 층의 버튼이 활성화됐는지 여부를 리턴한다.
Syntax: isButtonActivated( targetFloor )
Parameter
targetFloor
Type: Integer Description: 버튼의 활성화를 확인하려는 층의 숫자 ( 범위 : 1 ~ 생성된 층수 )
Returns: Boolean
Example:
isButtonActivated(4); //return true or false