@@ -2,8 +2,8 @@ describe("TESTS: Configuration => Subsystem => EJB => Container => Remoting Prof
22 let managementEndpoint : string ;
33
44 const address = [ "subsystem" , "ejb3" , "remoting-profile" ] ;
5- const remotingProfilesTableId = "ejb3- remoting-profile-table" ;
6- const configurationFormId = "ejb3- remoting-profile-form" ;
5+ const remotingProfilesTableId = "remoting-profile-table" ;
6+ const configurationFormId = "remoting-profile-form" ;
77
88 const remotingProfiles = {
99 create : {
@@ -39,9 +39,9 @@ describe("TESTS: Configuration => Subsystem => EJB => Container => Remoting Prof
3939 it ( "Create Remoting Profile" , ( ) => {
4040 cy . navigateTo ( managementEndpoint , "ejb3-configuration" ) ;
4141 cy . get ( "#ejb3-container-item" ) . click ( ) ;
42- cy . get ( "#ejb3- remoting-profile-item" ) . click ( ) ;
42+ cy . get ( "#remoting-profile-item" ) . click ( ) ;
4343 cy . addInTable ( remotingProfilesTableId ) ;
44- cy . text ( "ejb3- remoting-profile-table-add" , "name" , remotingProfiles . create . name ) ;
44+ cy . text ( "remoting-profile-table-add" , "name" , remotingProfiles . create . name ) ;
4545 cy . confirmAddResourceWizard ( ) ;
4646 cy . verifySuccess ( ) ;
4747 cy . validateAddress ( managementEndpoint , address . concat ( remotingProfiles . create . name ) , true ) ;
@@ -58,7 +58,7 @@ describe("TESTS: Configuration => Subsystem => EJB => Container => Remoting Prof
5858 value = ( result as { result : boolean } ) . result ;
5959 cy . navigateTo ( managementEndpoint , "ejb3-configuration" ) ;
6060 cy . get ( "#ejb3-container-item" ) . click ( ) ;
61- cy . get ( "#ejb3- remoting-profile-item" ) . click ( ) ;
61+ cy . get ( "#remoting-profile-item" ) . click ( ) ;
6262 cy . selectInTable ( remotingProfilesTableId , remotingProfiles . update . name ) ;
6363 cy . editForm ( configurationFormId ) ;
6464 cy . flip ( configurationFormId , "exclude-local-receiver" , value ) ;
@@ -84,7 +84,7 @@ describe("TESTS: Configuration => Subsystem => EJB => Container => Remoting Prof
8484 value = ( result as { result : boolean } ) . result ;
8585 cy . navigateTo ( managementEndpoint , "ejb3-configuration" ) ;
8686 cy . get ( "#ejb3-container-item" ) . click ( ) ;
87- cy . get ( "#ejb3- remoting-profile-item" ) . click ( ) ;
87+ cy . get ( "#remoting-profile-item" ) . click ( ) ;
8888 cy . selectInTable ( remotingProfilesTableId , remotingProfiles . update . name ) ;
8989 cy . editForm ( configurationFormId ) ;
9090 cy . flip ( configurationFormId , "local-receiver-pass-by-value" , value ) ;
@@ -102,7 +102,7 @@ describe("TESTS: Configuration => Subsystem => EJB => Container => Remoting Prof
102102 it ( "Edit static-ejb-discovery via type" , ( ) => {
103103 cy . navigateTo ( managementEndpoint , "ejb3-configuration" ) ;
104104 cy . get ( "#ejb3-container-item" ) . click ( ) ;
105- cy . get ( "#ejb3- remoting-profile-item" ) . click ( ) ;
105+ cy . get ( "#remoting-profile-item" ) . click ( ) ;
106106 cy . selectInTable ( remotingProfilesTableId , remotingProfiles . update . name ) ;
107107 cy . editForm ( configurationFormId ) ;
108108 cy . formInput ( configurationFormId , "static-ejb-discovery" )
@@ -127,7 +127,7 @@ describe("TESTS: Configuration => Subsystem => EJB => Container => Remoting Prof
127127 it ( "Edit static-ejb-discovery via wizard" , ( ) => {
128128 cy . navigateTo ( managementEndpoint , "ejb3-configuration" ) ;
129129 cy . get ( "#ejb3-container-item" ) . click ( ) ;
130- cy . get ( "#ejb3- remoting-profile-item" ) . click ( ) ;
130+ cy . get ( "#remoting-profile-item" ) . click ( ) ;
131131 cy . selectInTable ( remotingProfilesTableId , remotingProfiles . update . name ) ;
132132 cy . editForm ( configurationFormId ) ;
133133 cy . formInput ( configurationFormId , "static-ejb-discovery" )
@@ -158,7 +158,7 @@ describe("TESTS: Configuration => Subsystem => EJB => Container => Remoting Prof
158158 it ( "Remove" , ( ) => {
159159 cy . navigateTo ( managementEndpoint , "ejb3-configuration" ) ;
160160 cy . get ( "#ejb3-container-item" ) . click ( ) ;
161- cy . get ( "#ejb3- remoting-profile-item" ) . click ( ) ;
161+ cy . get ( "#remoting-profile-item" ) . click ( ) ;
162162 cy . removeFromTable ( remotingProfilesTableId , remotingProfiles . remove . name ) ;
163163 cy . verifySuccess ( ) ;
164164 cy . validateAddress ( managementEndpoint , address . concat ( remotingProfiles . remove . name ) , false ) ;
@@ -167,7 +167,7 @@ describe("TESTS: Configuration => Subsystem => EJB => Container => Remoting Prof
167167 it ( "Reset" , ( ) => {
168168 cy . navigateTo ( managementEndpoint , "ejb3-configuration" ) ;
169169 cy . get ( "#ejb3-container-item" ) . click ( ) ;
170- cy . get ( "#ejb3- remoting-profile-item" ) . click ( ) ;
170+ cy . get ( "#remoting-profile-item" ) . click ( ) ;
171171 cy . selectInTable ( remotingProfilesTableId , remotingProfiles . reset . name ) ;
172172 cy . resetForm ( configurationFormId , managementEndpoint , address . concat ( remotingProfiles . reset . name ) ) ;
173173 } ) ;
0 commit comments