Skip to content

Commit abd74ef

Browse files
committed
Finish Help Examples
1 parent 618675e commit abd74ef

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tapper-core",
3-
"version": "0.0.2",
3+
"version": "0.0.4",
44
"description": "CLI Source Code To Interact With Android ADB",
55
"main": "index.js",
66
"scripts": {

src/tapper.commands.execution.manager.ts

+17-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,23 @@ export class TapperCommandsExecutionManager {
153153
}
154154

155155
private static onPrintHelpCommandsExamples() {
156-
156+
console.log("")
157+
console.log("Tapper Help Commands, The Following Commands is an Short Example for Tapper Usage")
158+
console.log("Developer Options Examples")
159+
console.log("tapper execute-dev-option layout y -- To Enable Layout Bounds")
160+
console.log("tapper execute-dev-option layout n -- To Disable Layout Bounds")
161+
console.log("")
162+
console.log("Testing Functions Example")
163+
console.log("tapper execute-testing-events click 538,1727.9 -- To Perform Click By Coordinates (x,y)")
164+
console.log("tapper execute-testing-events double-click 538,1727.9 -- To Perform Double Click By Coordinates (x,y)")
165+
console.log("")
166+
console.log("General Options Example")
167+
console.log("tapper execute-general-options device -- To Show Connected Android Devices")
168+
console.log("tapper execute-general-options install pathToApkFile -- To Install Apk on The Device")
169+
console.log("")
170+
console.log("Execute Native Monkey Testing By Questions")
171+
console.log("tapper execute-monkey-testing")
172+
console.log("")
157173
}
158174

159175
private static onPrintOptions(options: Array<string>) {

0 commit comments

Comments
 (0)