2018-01-12 03:42:17 +01:00
|
|
|
# Copyright 2016-2017 VMware, Inc. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License
|
|
|
|
|
|
|
|
*** Settings ***
|
|
|
|
Documentation This resource provides any keywords related to the Harbor private registry appliance
|
|
|
|
Resource ../../resources/Util.robot
|
|
|
|
|
|
|
|
*** Variables ***
|
|
|
|
${HARBOR_VERSION} v1.1.1
|
|
|
|
|
|
|
|
*** Keywords ***
|
|
|
|
Delete Success
|
2018-05-24 07:07:19 +02:00
|
|
|
[Arguments] @{obj}
|
2018-05-24 13:53:23 +02:00
|
|
|
:For ${obj} in @{obj}
|
2018-06-05 12:51:11 +02:00
|
|
|
\ Wait Until Page Contains Element //clr-tab-content//div[contains(.,'${obj}')]/../div/clr-icon[@shape="success-standard"]
|
2018-01-12 03:42:17 +01:00
|
|
|
Sleep 1
|
|
|
|
|
2018-05-24 07:07:19 +02:00
|
|
|
Delete Fail
|
|
|
|
[Arguments] @{obj}
|
|
|
|
:For ${obj} in @{obj}
|
2018-06-05 12:51:11 +02:00
|
|
|
\ Wait Until Page Contains Element //clr-tab-content//div[contains(.,'${obj}')]/../div/clr-icon[@shape="error-standard"]
|
2018-01-12 03:42:17 +01:00
|
|
|
Sleep 1
|
|
|
|
|
|
|
|
Filter Object
|
2018-03-12 07:20:37 +01:00
|
|
|
#Filter project repo user tag.
|
2018-01-12 03:42:17 +01:00
|
|
|
[Arguments] ${kw}
|
|
|
|
Click Element xpath=//hbr-filter//clr-icon
|
|
|
|
Input Text xpath=//hbr-filter//input ${kw}
|
|
|
|
Sleep 1
|
|
|
|
|
|
|
|
Select Object
|
2018-03-12 07:20:37 +01:00
|
|
|
#select single element such as user project repo tag
|
2018-01-12 03:42:17 +01:00
|
|
|
[Arguments] ${obj}
|
2018-03-12 07:20:37 +01:00
|
|
|
Click Element //clr-dg-row[contains(.,'${obj}')]//label
|
2018-01-12 03:42:17 +01:00
|
|
|
|
2018-07-19 11:02:09 +02:00
|
|
|
# This func cannot support as the delete user flow changed.
|
2018-01-12 03:42:17 +01:00
|
|
|
Multi-delete Object
|
|
|
|
[Arguments] @{obj}
|
|
|
|
:For ${obj} in @{obj}
|
|
|
|
\ Click Element //clr-dg-row[contains(.,'${obj}')]//label
|
|
|
|
Sleep 1
|
|
|
|
Click Element //button[contains(.,'Delete')]
|
|
|
|
Sleep 2
|
|
|
|
Click Element //clr-modal//button[contains(.,'DELETE')]
|
|
|
|
Sleep 3
|
|
|
|
|
2018-07-19 11:02:09 +02:00
|
|
|
Multi-delete User
|
|
|
|
[Arguments] @{obj}
|
|
|
|
:For ${obj} in @{obj}
|
|
|
|
\ Click Element //clr-dg-row[contains(.,'${obj}')]//label
|
|
|
|
Sleep 1
|
|
|
|
Click Element ${member_action_xpath}
|
|
|
|
Sleep 1
|
|
|
|
Click Element //clr-dropdown/clr-dropdown-menu/button[2]
|
|
|
|
Sleep 2
|
|
|
|
Click Element //clr-modal//button[contains(.,'DELETE')]
|
|
|
|
Sleep 3
|
|
|
|
|
2018-01-30 12:04:24 +01:00
|
|
|
Multi-delete Member
|
|
|
|
[Arguments] @{obj}
|
|
|
|
:For ${obj} in @{obj}
|
|
|
|
\ Click Element //clr-dg-row[contains(.,'${obj}')]//label
|
|
|
|
Sleep 1
|
2018-07-19 11:02:09 +02:00
|
|
|
Click Element ${member_action_xpath}
|
|
|
|
Sleep 1
|
|
|
|
Click Element ${delete_action_xpath}
|
2018-01-30 12:04:24 +01:00
|
|
|
Sleep 2
|
|
|
|
Click Element //clr-modal//button[contains(.,'DELETE')]
|
|
|
|
Sleep 3
|
|
|
|
|
2018-01-25 13:35:44 +01:00
|
|
|
Multi-delete Object Without Confirmation
|
|
|
|
[Arguments] @{obj}
|
|
|
|
:For ${obj} in @{obj}
|
|
|
|
\ Click Element //clr-dg-row[contains(.,'${obj}')]//label
|
|
|
|
Sleep 1
|
|
|
|
Click Element //button[contains(.,'Delete')]
|
|
|
|
Sleep 3
|
|
|
|
|
2018-01-12 03:42:17 +01:00
|
|
|
Select All On Current Page Object
|
|
|
|
Click Element //div[@class='datagrid-head']//label
|