aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/clamp/UIs/02__Create_TCA_model.robot
diff options
context:
space:
mode:
authoreh552t <eh552t@intl.att.com>2017-09-15 14:47:45 +0200
committerAnaƫl Closson <ac2550@intl.att.com>2017-09-25 12:19:07 +0000
commit10d13035c82097a57517c5eb608b1021e3841b7a (patch)
tree0ac2909be039e63043225fc39a30bf8972a2e45f /test/csit/tests/clamp/UIs/02__Create_TCA_model.robot
parent223621a7f331637a13f9097e867b99e1b5ad69d1 (diff)
Add first Holmes test and refactor
Change-Id: Ic508686c2f12424ac87698a09f372de578c6dc91 Signed-off-by: eh552t <eh552t@intl.att.com> Issue-ID: CLAMP-34
Diffstat (limited to 'test/csit/tests/clamp/UIs/02__Create_TCA_model.robot')
-rw-r--r--test/csit/tests/clamp/UIs/02__Create_TCA_model.robot50
1 files changed, 50 insertions, 0 deletions
diff --git a/test/csit/tests/clamp/UIs/02__Create_TCA_model.robot b/test/csit/tests/clamp/UIs/02__Create_TCA_model.robot
new file mode 100644
index 000000000..9f287cac7
--- /dev/null
+++ b/test/csit/tests/clamp/UIs/02__Create_TCA_model.robot
@@ -0,0 +1,50 @@
+*** Settings ***
+Library Collections
+Library RequestsLibrary
+Library OperatingSystem
+Library json
+Library Selenium2Library
+Library XvfbRobot
+
+
+*** Test Cases ***
+Get Requests health check ok
+ CreateSession clamp http://localhost:8080
+ ${resp}= Get Request clamp /restservices/clds/v1/clds/healthcheck
+ Should Be Equal As Strings ${resp.status_code} 200
+
+Open Browser
+# Next line is to be enabled for Headless tests only (jenkins?). To see the tests desable the line.
+ Start Virtual Display 1920 1080
+ Open Browser http://localhost:8080/designer/index.html browser=firefox
+ Set Selenium Speed .2 seconds
+ Set Window Size 1920 1080
+ ${title}= Get Title
+ Should Be Equal CLDS ${title}
+
+Good Login to Clamp UI and Verify logged in
+ Input Text locator=username text=admin
+ Input Text locator=password text=password
+ Press Key locator=password key=\\13
+ Wait Until Element Is Visible xpath=//*[@class="navbar-brand logo_name ng-binding"] timeout=60
+ Element Text Should Be xpath=//*[@class="navbar-brand logo_name ng-binding"] expected=Hello:admin
+
+Create Model from Menu
+ Wait Until Element Is Visible xpath=//*[@id="navbar"]/ul/li[2]/a timeout=60
+ Click Element xpath=//*[@id="navbar"]/ul/li[2]/a
+ Wait Until Element Is Visible locator=Create CL timeout=60
+ Click Element locator=Create CL
+ Input Text locator=modelName text=TCAModel
+ Select From List By Label id=templateName TCATemplate
+ Click Button locator=Create
+
+Save Model from Menu
+ Wait Until Element Is Visible xpath=//*[@id="navbar"]/ul/li[2]/a timeout=60
+ Click Element xpath=//*[@id="navbar"]/ul/li[2]/a
+ Wait Until Element Is Visible locator=Save CL timeout=60
+ Click Element locator=Save CL
+ Wait Until Element Is Visible xpath=//*[@id="alert_message_"] timeout=60
+ Element Text Should Be xpath=//*[@id="alert_message_"] expected=Action Successful:SAVE
+
+Close Browser
+ Close Browser