Ekam, a test automation platform, helps you to quickly get started with WEB | MOBILE | API.
Install ekam-cli
npm package.
npm install -g ekam-cli
or
yarn add -g ekam-cli
Go to the folder where you want to create a new ekam project and run below command
ekam create -n <project_name>
If you want to create a project using path, use below command
ekam create -p <path/to/project> -n <project_name>
sample_project/
+-- build.gradle
+-- app //Store Application Under Test for Android or Ios platforms.
+-- <android>.apk
+-- <ios>.app
+-- <ios>.ipa
+-- config //test run configuration
+-- default.properties
+-- mobile.remote.properties
+-- web.remote.properties
+-- src/test
+-- java
¦ +-- api
¦ ¦ +-- ApiExampleTest.java
¦ +-- mobile
¦ ¦ +-- MobileExampleTest.java
¦ +-- web
¦ ¦ +-- WebExampleTest.java
+-- resources
¦ +-- cloud_config
¦ ¦ +-- browserstack.json
¦ +-- mobilefeed.json
¦ +-- webfeed.json
Follow below quick start guides.