-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added error handling and exit statements
- Loading branch information
jpunkt
committed
Jun 29, 2020
1 parent
204d830
commit 36a2be2
Showing
4 changed files
with
86 additions
and
43 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 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,17 +1,29 @@ | ||
# The path to the Webdriver (for Chrome/Chromium) | ||
CHROMEDRIVER_PATH = 'C:\\WebDriver\\bin\\chromedriver.exe' | ||
|
||
BOOKMARKLET_PATH = 'C:\\Users\\Administrator\\Desktop\\test-bookmarklet.js' | ||
|
||
# Tell the browser to ignore invalid/insecure https connections | ||
BROWSER_INSECURE_CERTS = True | ||
|
||
DESK_LOGIN_REQUIRED = True | ||
|
||
# The URL pointing to the Franka Control Webinterface (Desk) | ||
DESK_URL = 'robot.franka.de' | ||
|
||
# Expect a login page when calling Desk | ||
DESK_LOGIN_REQUIRED = True | ||
|
||
# The ADS Id of the PLC (defaults to localhost) | ||
PLC_ID = '127.0.0.1.1.1' | ||
|
||
# Boolean flag on the PLC, set TRUE to start the web browser | ||
PLC_START_FLAG = 'GVL.bStartBlockly' | ||
|
||
# Blocklenium sets this flag TRUE if it terminates due to an exception | ||
PLC_ERROR_FLAG = 'GVL.bBlockleniumError' | ||
|
||
# Blocklenium sets this to it's terminating error message | ||
PLC_ERROR_MSG = 'GVL.sBlockleniumErrorMsg' | ||
|
||
# Set the Username for Desk on the PLC | ||
PLC_DESK_USER = 'GVL.sDeskUsername' | ||
|
||
# Set the Password for Desk on the PLC | ||
PLC_DESK_PW = 'GVL.sDeskPassword' |