File tree 3 files changed +6
-7
lines changed
audience/developer_portal
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class RHSSOIntegrationEditView(BaseAudienceView):
78
78
path_pattern = "/p/admin/authentication_providers/{integration_id}/edit"
79
79
client_id = TextInput (id = "authentication_provider_client_id" )
80
80
client_secret = TextInput (id = "authentication_provider_client_secret" )
81
- realm = TextInput (id = "authentication_provider_realm " )
81
+ realm = TextInput (id = "authentication_provider_site " )
82
82
update_button = ThreescaleUpdateButton ()
83
83
84
84
def __init__ (self , parent , integration ):
Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ class TlsTerminationPolicyView(View):
48
48
NAME = "TLS Termination"
49
49
remove_policy_btn = Button ("Remove" , classes = [Button .DANGER ])
50
50
add_cert_btn = Button (locator = ".//button[contains(@class, 'btn-add')]" )
51
- local_cert_key = FileInput (id = "root_certificate_key_path " )
52
- local_cert = FileInput (id = "root_certificate_path " )
53
- embedded_cert = FileInput (id = "root_certificate " )
54
- embedded_cert_key = FileInput (id = "root_certificate_key " )
51
+ local_cert_key = FileInput (id = "root_certificates_0_certificate_key_path " )
52
+ local_cert = FileInput (id = "root_certificates_0_certificate_path " )
53
+ embedded_cert = FileInput (id = "root_certificates_0_certificate " )
54
+ embedded_cert_key = FileInput (id = "root_certificates_0_certificate_key " )
55
55
update_policy_btn = Button (locator = ".//button[text()='Update Policy']" )
56
56
cert_type_select = ThreescaleDropdown ('//*[@id="root_certificates_0_anyof_select"]' )
57
57
Original file line number Diff line number Diff line change @@ -82,11 +82,10 @@ class products(View):
82
82
"""Products page object"""
83
83
84
84
products_title = Text (locator = '//*[@id="products-widget"]/article/div[1]/div[1]/h1' )
85
- create_product_button = Button (locator = "//a[@href='/apiconfig/services/new']" )
86
85
87
86
@property
88
87
def is_displayed (self ):
89
- return self .products_title .is_displayed and self . create_product_button . is_displayed
88
+ return self .products_title .is_displayed
90
89
91
90
def prerequisite (self ):
92
91
return BaseMasterView
You can’t perform that action at this time.
0 commit comments