-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Public repository update to latest version
- Loading branch information
pawel.lesniewski
committed
Oct 7, 2021
1 parent
c3fe936
commit 33b9cf9
Showing
32 changed files
with
2,870 additions
and
168 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,63 @@ | ||
from Controller import Controller | ||
|
||
c = Controller() | ||
|
||
c.unlock(1) | ||
|
||
c.write(c.TAB, 1, 0) | ||
c.write(c.ENTER, 1, 0) | ||
c.sleep("Ladowanie jezykow", 3) | ||
|
||
# jezyk polski | ||
c.write(c.DOWN_ARROW, 40, 1) | ||
c.write(c.ENTER, 1, 0) | ||
|
||
c.write(c.DOWN_ARROW, 50, 1) | ||
c.write(c.ENTER, 1, 0) | ||
c.sleep("Ladowanie laczenia z siecia komorkowa", 3) | ||
|
||
c.write(c.TAB, 3, 0) | ||
c.write(c.ENTER, 1, 0) | ||
c.sleep("Ladowanie licencji", 3) | ||
|
||
c.write(c.TAB, 2, 0) | ||
c.write(c.ENTER, 1, 0) | ||
c.write(c.TAB, 15, 1) | ||
c.write(c.ENTER, 1, 0) | ||
c.sleep("Ladowanie wifi", 10) | ||
|
||
|
||
#potwierdzenie knox cloud | ||
c.write(c.ENTER, 1, 0) | ||
c.sleep("Potwierdzenie, czekanie na wifi", 3) | ||
|
||
|
||
c.write(c.UP_ARROW, 1, 0) | ||
c.write(c.ENTER, 1, 0) | ||
c.sleep("Czekanie na siec", 3) | ||
c.sequence("1gp8ja3mw", 1) | ||
c.write(c.ENTER, 1, 0) | ||
|
||
c.sleep("Ladowanie po wczytaniu sieci", 10) | ||
c.write(c.DOWN_ARROW, 25, 1) | ||
c.write(c.ENTER, 1, 0) | ||
c.sleep("Czekanie na sprawdzenie szczegolow i knox", 120) | ||
|
||
|
||
c.unlock(1) | ||
c.write(c.TAB, 4, 0) | ||
c.write(c.ENTER, 1, 0) | ||
c.sleep("Czekam na skonfigurowanie urzadzenia", 60) | ||
|
||
c.unlock(1) | ||
c.write(c.TAB, 1, 0) | ||
c.write(c.ENTER, 1, 0) | ||
c.sleep("Czekam na pulpit", 60) | ||
|
||
# Akceptowanie licencji knox | ||
c.unlock(2) | ||
c.write(c.TAB, 2, 0) | ||
c.write(c.ENTER, 1, 0) | ||
|
||
c.sleep("FINISH", 1) | ||
|
Oops, something went wrong.