@@ -19,6 +19,7 @@ export const EffectiveUserField = ({ value, setValue, defaultValue }) => (
1919 labelInfo = { < ResetDefault setValue = { setValue } defaultValue = { defaultValue } /> }
2020 >
2121 < TextInput
22+ ouiaId = "effective-user"
2223 aria-label = "effective user"
2324 autoComplete = "effective-user"
2425 id = "effective-user"
@@ -86,6 +87,7 @@ export const PasswordField = ({ value, setValue }) => (
8687 fieldId = "job-password"
8788 >
8889 < TextInput
90+ ouiaId = "job-password"
8991 aria-label = "job password"
9092 autoComplete = "new-password" // to prevent firefox from autofilling the user password
9193 id = "job-password"
@@ -109,6 +111,7 @@ export const KeyPassphraseField = ({ value, setValue }) => (
109111 fieldId = "key-passphrase"
110112 >
111113 < TextInput
114+ ouiaId = "key-passphrase"
112115 aria-label = "key passphrase"
113116 autoComplete = "key-passphrase"
114117 id = "key-passphrase"
@@ -132,6 +135,7 @@ export const EffectiveUserPasswordField = ({ value, setValue }) => (
132135 fieldId = "effective-user-password"
133136 >
134137 < TextInput
138+ ouiaId = "effective-user-password"
135139 aria-label = "effective userpassword"
136140 autoComplete = "effective-user-password"
137141 id = "effective-user-password"
@@ -186,6 +190,7 @@ export const ExecutionOrderingField = ({ isRandomizedOrdering, setValue }) => (
186190 isInline
187191 >
188192 < Radio
193+ ouiaId = "execution-order-alphabetical"
189194 aria-label = "execution order alphabetical"
190195 isChecked = { ! isRandomizedOrdering }
191196 name = "execution-order"
@@ -194,6 +199,7 @@ export const ExecutionOrderingField = ({ isRandomizedOrdering, setValue }) => (
194199 label = { __ ( 'Alphabetical' ) }
195200 />
196201 < Radio
202+ ouiaId = "execution-order-randomized"
197203 aria-label = "execution order randomized"
198204 isChecked = { isRandomizedOrdering }
199205 name = "execution-order"
@@ -216,6 +222,7 @@ export const SSHUserField = ({ value, setValue, defaultValue }) => (
216222 labelInfo = { < ResetDefault setValue = { setValue } defaultValue = { defaultValue } /> }
217223 >
218224 < TextInput
225+ ouiaId = "ssh-user"
219226 aria-label = "ssh user"
220227 autoComplete = "ssh-user"
221228 id = "ssh-user"
0 commit comments