@@ -102,23 +102,23 @@ public static void selectHamburgerMenuList(String listName) {
102
102
* keyValuePair as key
103
103
*/
104
104
public static void enterKeyValuePreferences (String preferenceProperty , String keyValuePair ) {
105
- String pluginPropertyDataCyAttribute = PluginPropertyUtils .getPluginPropertyDataCyAttribute (
105
+ String dataCyAttribute = PluginPropertyUtils .getPluginPropertyDataCyAttribute (
106
106
preferenceProperty );
107
- if (pluginPropertyDataCyAttribute == null ) {
108
- pluginPropertyDataCyAttribute = preferenceProperty ;
107
+ if (dataCyAttribute == null ) {
108
+ dataCyAttribute = preferenceProperty ;
109
109
}
110
110
Map <String , String > properties =
111
111
JsonUtils .convertKeyValueJsonArrayToMap (PluginPropertyUtils .pluginProp (keyValuePair ));
112
112
int index = 0 ;
113
113
for (Map .Entry <String , String > entry : properties .entrySet ()) {
114
114
if (index != 0 ) {
115
115
ElementHelper .clickOnElement (CdfNameSpaceAdminLocators .locateAddRowButtonProperty (
116
- pluginPropertyDataCyAttribute , index - 1 ));
116
+ dataCyAttribute , index - 1 ));
117
117
}
118
118
ElementHelper .sendKeys (CdfNameSpaceAdminLocators .locateKeyProperty (
119
- pluginPropertyDataCyAttribute , index ), entry .getKey ());
119
+ dataCyAttribute , index ), entry .getKey ());
120
120
ElementHelper .sendKeys (CdfNameSpaceAdminLocators .locateValueProperty (
121
- pluginPropertyDataCyAttribute , index ), entry .getValue ());
121
+ dataCyAttribute , index ), entry .getValue ());
122
122
index ++;
123
123
}
124
124
}
@@ -131,13 +131,13 @@ public static void enterKeyValuePreferences(String preferenceProperty, String ke
131
131
* fetched from it else Provisioner is used as it is.
132
132
*/
133
133
public static void selectProvisioner (String provisionerName ) {
134
- String pluginPropertyDataCyAttribute = PluginPropertyUtils .getPluginPropertyDataCyAttribute (
134
+ String dataCyAttribute = PluginPropertyUtils .getPluginPropertyDataCyAttribute (
135
135
provisionerName );
136
- if (pluginPropertyDataCyAttribute == null ) {
137
- pluginPropertyDataCyAttribute = provisionerName ;
136
+ if (dataCyAttribute == null ) {
137
+ dataCyAttribute = provisionerName ;
138
138
}
139
139
ElementHelper .clickOnElement (
140
- CdfNameSpaceAdminLocators .locateProvisionerInList (pluginPropertyDataCyAttribute ));
140
+ CdfNameSpaceAdminLocators .locateProvisionerInList (dataCyAttribute ));
141
141
}
142
142
143
143
/**
@@ -180,13 +180,13 @@ public static void verifyIfResetValidatedSuccessfully() {
180
180
* fetched from it else type of action is used as it is.
181
181
*/
182
182
public static void clickCreateButtonComputeProfile (String buttonType ) {
183
- String pluginPropertyDataCyAttribute = PluginPropertyUtils .getPluginPropertyDataCyAttribute (
183
+ String dataCyAttribute = PluginPropertyUtils .getPluginPropertyDataCyAttribute (
184
184
buttonType );
185
- if (pluginPropertyDataCyAttribute == null ) {
186
- pluginPropertyDataCyAttribute = buttonType ;
185
+ if (dataCyAttribute == null ) {
186
+ dataCyAttribute = buttonType ;
187
187
}
188
188
ElementHelper .clickOnElement (
189
- CdfNameSpaceAdminLocators .locateButtonType (pluginPropertyDataCyAttribute ));
189
+ CdfNameSpaceAdminLocators .locateButtonType (dataCyAttribute ));
190
190
}
191
191
192
192
/**
0 commit comments