2018-09-19 18:57:15 +02:00
|
|
|
# Copyright Project Harbor Authors
|
2017-08-07 08:02:38 +02:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
*** Variables ***
|
2017-12-21 04:00:12 +01:00
|
|
|
${new_name_xpath} //hbr-list-replication-rule//button[contains(.,'New')]
|
2019-01-30 07:22:31 +01:00
|
|
|
${policy_name_xpath} //*[@id='policy_name']
|
|
|
|
${policy_description_xpath} //*[@id='policy_description']
|
2017-12-21 04:00:12 +01:00
|
|
|
${policy_enable_checkbox} //input[@id='policy_enable']/../label
|
|
|
|
${policy_endpoint_checkbox} //input[@id='check_new']/../label
|
2017-08-07 08:02:38 +02:00
|
|
|
${destination_name_xpath} //*[@id='destination_name']
|
|
|
|
${destination_url_xpath} //*[@id='destination_url']
|
|
|
|
${destination_username_xpath} //*[@id='destination_username']
|
|
|
|
${destination_password_xpath} //*[@id='destination_password']
|
2018-05-14 14:01:00 +02:00
|
|
|
${replication_save_xpath} //button[contains(.,'OK')]
|
2018-03-20 06:25:03 +01:00
|
|
|
${replication_xpath} //clr-vertical-nav-group-children/a[contains(.,'Replication')]
|
2019-01-30 07:22:31 +01:00
|
|
|
${destination_insecure_xpath} //label[@id='destination_insecure_checkbox']
|
2018-03-20 06:25:03 +01:00
|
|
|
|
|
|
|
${new_replication-rule_button} //button[contains(.,'New Replication Rule')]
|
2018-05-07 12:30:08 +02:00
|
|
|
${link_to_registries} //clr-modal//span[contains(.,'Endpoint')]
|
2018-03-20 06:25:03 +01:00
|
|
|
${new_endpoint_button} //hbr-endpoint//button[contains(.,'New')]
|
|
|
|
${rule_name} //input[@id='ruleName']
|
|
|
|
${source_project} //input[@value='name']
|
2019-01-30 07:22:31 +01:00
|
|
|
${source_image_filter_add} //hbr-create-edit-rule/clr-modal//clr-icon[@id='add-label-list']
|
2018-03-20 06:25:03 +01:00
|
|
|
${source_iamge_repo_filter} //hbr-create-edit-rule//section/div[4]/div/div[1]/div/label/input
|
|
|
|
${source_image_tag_filter} //hbr-create-edit-rule//section/div[4]/div/div[2]/div/label/input
|
|
|
|
${rule_target_select} //select[@id='ruleTarget']
|
2019-01-30 07:22:31 +01:00
|
|
|
${rule_trigger_select} //select[@id='ruleTrigger']
|
|
|
|
${schedule_type_select} //select[@name='scheduleType']
|
|
|
|
${schedule_day_select} //select[@name='scheduleDay']
|
|
|
|
${shcedule_time} //input[@type='time']
|
|
|
|
${destination_insecure_checkbox} //hbr-create-edit-endpoint/clr-modal//input[@id='destination_insecure']
|
2018-03-20 06:25:03 +01:00
|
|
|
${ping_test_button} //button[contains(.,'Test')]
|
|
|
|
${nav_to_registries} //clr-vertical-nav//span[contains(.,'Registries')]
|
|
|
|
${nav_to_replications} //clr-vertical-nav//span[contains(.,'Replications')]
|
|
|
|
${rule_filter_search} //hbr-replication/div/div[1]//hbr-filter/span/clr-icon
|
|
|
|
${rule_filter_input} //hbr-replication/div/div[1]//hbr-filter/span//input
|
|
|
|
${job_filter_search} //hbr-replication/div/div[3]//hbr-filter/span/clr-icon
|
|
|
|
${job_filter_input} //hbr-replication/div/div[3]//hbr-filter/span//input
|
|
|
|
${endpoint_filter_search} //hbr-filter/span/clr-icon
|
|
|
|
${endpoint_filter_input} //hbr-filter/span//input
|
|
|
|
${action_bar_edit} //button[contains(.,'Edit')]
|
|
|
|
${action_bar_delete} //button[contains(.,'Delete')]
|
|
|
|
${stop_jobs_button} //button[contains(.,'Stop Jobs')]
|
|
|
|
${dialog_close} //clr-modal//button[contains(.,'CLOSE')]
|
|
|
|
${dialog_delete} //clr-modal//button[contains(.,'DELETE')]
|
|
|
|
${dialog_replicate} //clr-modal//button[contains(.,'REPLICATE')]
|
|
|
|
${action_bar_replicate} //button[contains(.,'Replicate')]
|
|
|
|
${rule_save_button} //button[contains(.,'SAVE')]
|