aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/scripts/clamp/python-lib/CustomSeleniumLibrary.py
diff options
context:
space:
mode:
authoreh552t <eh552t@intl.att.com>2018-07-30 12:48:48 +0200
committereh552t <eh552t@intl.att.com>2018-07-31 15:38:37 +0200
commit7edf080cc2a6f42be378864147157ec06a7ba050 (patch)
tree7047138d53b2bc8f5a63a5bee3cfcf4a96d21803 /test/csit/scripts/clamp/python-lib/CustomSeleniumLibrary.py
parent0b8db8f3fb19c3e41a901e76c930e7f2008239f4 (diff)
Fix CSIT tests for auth login and api changes
Change-Id: I73146fd6ad81f8826014ef03ad3e5196b0ef952c Signed-off-by: eh552t <eh552t@intl.att.com> Issue-ID: CLAMP-129
Diffstat (limited to 'test/csit/scripts/clamp/python-lib/CustomSeleniumLibrary.py')
-rwxr-xr-xtest/csit/scripts/clamp/python-lib/CustomSeleniumLibrary.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/csit/scripts/clamp/python-lib/CustomSeleniumLibrary.py b/test/csit/scripts/clamp/python-lib/CustomSeleniumLibrary.py
new file mode 100755
index 000000000..ad11b1152
--- /dev/null
+++ b/test/csit/scripts/clamp/python-lib/CustomSeleniumLibrary.py
@@ -0,0 +1,20 @@
+from Selenium2Library import Selenium2Library
+from selenium.webdriver.common.keys import Keys
+import time
+
+class CustomSeleniumLibrary(Selenium2Library):
+ def insert_into_prompt(self, text):
+ alert = None
+ try:
+ time.sleep(5)
+ listOfFields = text.split(" ")
+ allInOneString=""
+ for temp in listOfFields:
+ allInOneString=allInOneString+temp+Keys.TAB
+
+ alert= self._current_browser().switch_to_alert()
+ alert.send_keys(allInOneString)
+ except WebDriverException:
+ raise RuntimeError('There were no alert')
+
+