관리 메뉴

ITGeine

Chapter 1.5: Desired Capabilities 본문

테스트 자동화/Appium

Chapter 1.5: Desired Capabilities

Nick9 2022. 5. 23. 14:08

Chapter 1.5 에서는 capabilities 에 대한 설명을 진행한다.

 

> Appium 페이지 https://appium.io/docs/en/writing-running-appium/caps/

 

Desired Capabilities - Appium

From here you can search these documents. Enter your search terms below.

appium.io

 

package.json 에 테스트 스크립트 직접 지정하면 아래 명령어로 테스트 수행가능

npm test

 

테스트로 돌릴 앱 경로 수정 - path 모듈, 프로젝트 내 파일 사용

let {join} = require('path');

'appium:app' : join(process.cwd(),'./ApiDemos-debug.apk')