-
-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#801 final cleanups, some test aut stuff too
- Loading branch information
1 parent
684bcc6
commit cc3f668
Showing
27 changed files
with
87 additions
and
992 deletions.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Download the chrome driver version corresponding to the chrome browser version you are testing with | ||
from http://chromedriver.chromium.org/downloads and save it here as 'chromedriver' | ||
from http://appium.io/docs/en/writing-running-appium/web/chromedriver/ |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
#!/bin/bash | ||
appium --chromedriver-executable ./chromedriver/chromedriver55 | ||
appium --chromedriver-executable ./chromedriver/chromedriver234 | ||
#appium --chromedriver-executable ./chromedriver/chromedriver55 | ||
#appium --chromedriver-executable ./chromedriver/chromedriver220 |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/bash | ||
rm -rf binary/* | ||
cp ../../debug_files/app-debug.apk binary/zmNinja.apk | ||
#cp ../../debug_files/app-debug.apk binary/zmNinja.apk | ||
cp ../../release_files/zmNinja.apk binary/zmNinja.apk | ||
cp -R ~/Library/Developer/Xcode/DerivedData/zmNinja-dgoooijqwytvduflzaereulftmpl/Build/Products/Debug-iphonesimulator/zmNinja.app binary/ |
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,15 @@ | ||
''' | ||
Validates Logs View | ||
''' | ||
|
||
import common as c | ||
from time import sleep | ||
import app | ||
|
||
def run_tests(self): | ||
app.tap_menu_js() | ||
c.log ('Validating logs') | ||
c.click_item('testaut_menu_logs') | ||
sleep(2) | ||
c.take_screenshot(None, 'logs-app-ver.png') | ||
|
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,15 @@ | ||
''' | ||
Validates Timeline View | ||
''' | ||
|
||
import common as c | ||
from time import sleep | ||
import app | ||
|
||
def run_tests(self): | ||
app.tap_menu_js() | ||
c.log ('Validating timeline') | ||
_wait_for_id('timeline-ctrl') | ||
c.take_screenshot(None, 'view-after-timeline-draw.png') | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.