-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ISSUE-405: crate bat script to launch jar file
- Loading branch information
1 parent
61e6eba
commit f1f5747
Showing
2 changed files
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
echo off | ||
echo Make ui damp and pull it | ||
adb shell uiautomator dump | ||
adb pull /sdcard/window_dump.xml | ||
echo Create page object | ||
java -jar page-object-code-gen.jar window_dump.xml %~1 %~2 | ||
del window_dump.xml |