mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 03:30:51 +01:00
e12fd13c56
Signed-off-by: danfengliu <danfengl@vmware.com>
106 lines
3.6 KiB
Plaintext
106 lines
3.6 KiB
Plaintext
# Copyright Project Harbor Authors
|
|
#
|
|
# 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
|
|
[Arguments] @{obj}
|
|
:For ${obj} in @{obj}
|
|
\ Wait Until Page Contains Element //clr-tab-content//div[contains(.,'${obj}')]/../div/clr-icon[@shape='success-standard']
|
|
Sleep 1
|
|
Capture Page Screenshot
|
|
|
|
Delete Fail
|
|
[Arguments] @{obj}
|
|
:For ${obj} in @{obj}
|
|
\ Wait Until Page Contains Element //clr-tab-content//div[contains(.,'${obj}')]/../div/clr-icon[@shape='error-standard']
|
|
Sleep 1
|
|
Capture Page Screenshot
|
|
|
|
Filter Object
|
|
#Filter project repo user tag.
|
|
[Arguments] ${kw}
|
|
${element}= Set Variable xpath=//hbr-filter//clr-icon
|
|
Wait Until Element Is Visible And Enabled ${element}
|
|
Click Element ${element}
|
|
${element}= Set Variable xpath=//hbr-filter//input
|
|
Wait Until Element Is Visible And Enabled ${element}
|
|
Input Text ${element} ${kw}
|
|
Sleep 3
|
|
|
|
Select Object
|
|
#select single element such as user project repo tag
|
|
[Arguments] ${obj}
|
|
${element}= Set Variable xpath=//clr-dg-row[contains(.,'${obj}')]//label
|
|
Wait Until Element Is Visible And Enabled ${element}
|
|
Click Element ${element}
|
|
|
|
# This func cannot support as the delete user flow changed.
|
|
Multi-delete Object
|
|
[Arguments] @{obj}
|
|
:For ${obj} in @{obj}
|
|
\ ${element}= Set Variable xpath=//clr-dg-row[contains(.,'${obj}')]//label
|
|
\ Wait Until Element Is Visible And Enabled ${element}
|
|
\ Click Element ${element}
|
|
Capture Page Screenshot
|
|
${element}= Set Variable xpath=//button[contains(.,'Delete')]
|
|
Wait Until Element Is Visible And Enabled ${element}
|
|
Click Element ${element}
|
|
Capture Page Screenshot
|
|
${element}= Set Variable xpath=//clr-modal//button[contains(.,'DELETE')]
|
|
Wait Until Element Is Visible And Enabled ${element}
|
|
Click Element ${element}
|
|
Capture Page Screenshot
|
|
|
|
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
|
|
|
|
Multi-delete Member
|
|
[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 ${delete_action_xpath}
|
|
Sleep 2
|
|
Click Element //clr-modal//button[contains(.,'DELETE')]
|
|
Sleep 3
|
|
|
|
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
|
|
|
|
Select All On Current Page Object
|
|
Click Element //div[@class='datagrid-head']//label
|