@@ -258,7 +258,7 @@ describe('Stepper Form', () => {
258
258
259
259
cy . get ( '@theAnimalSelect' )
260
260
. find ( '.v-field' )
261
- . invoke ( 'attr' , 'aria-owns ' )
261
+ . invoke ( 'attr' , 'aria-controls ' )
262
262
. then ( ( fieldId ) => {
263
263
cy . get ( '@theAnimalSelect' ) . click ( ) ;
264
264
@@ -276,7 +276,7 @@ describe('Stepper Form', () => {
276
276
277
277
cy . get ( '@theSelect' )
278
278
. find ( '.v-field' )
279
- . invoke ( 'attr' , 'aria-owns ' )
279
+ . invoke ( 'attr' , 'aria-controls ' )
280
280
. then ( ( fieldId ) => {
281
281
cy . get ( '@theSelect' ) . click ( ) ;
282
282
@@ -316,7 +316,7 @@ describe('Stepper Form', () => {
316
316
. click ( )
317
317
. trigger ( 'blur' )
318
318
. find ( '.v-field' )
319
- . invoke ( 'attr' , 'aria-owns ' )
319
+ . invoke ( 'attr' , 'aria-controls ' )
320
320
. then ( ( fieldId ) => {
321
321
cy . get ( '@theStringAutoSelect' ) . click ( ) ;
322
322
@@ -336,7 +336,7 @@ describe('Stepper Form', () => {
336
336
cy . get ( '@theArrayAutoSelect' )
337
337
. type ( animal )
338
338
. find ( '.v-field' )
339
- . invoke ( 'attr' , 'aria-owns ' )
339
+ . invoke ( 'attr' , 'aria-controls ' )
340
340
. then ( ( fieldId ) => {
341
341
cy . get ( '@theArrayAutoSelect' ) . click ( ) ;
342
342
@@ -362,7 +362,7 @@ describe('Stepper Form', () => {
362
362
363
363
cy . get ( '@theCombobox' )
364
364
. find ( '.v-field' )
365
- . invoke ( 'attr' , 'aria-owns ' )
365
+ . invoke ( 'attr' , 'aria-controls ' )
366
366
. then ( ( fieldId ) => {
367
367
cy . get ( '@theCombobox' ) . click ( ) ;
368
368
@@ -401,10 +401,9 @@ describe('Stepper Form', () => {
401
401
cy . get ( '@theColor' )
402
402
. find ( 'input' )
403
403
. then ( ( el ) => {
404
- expect ( el ) . to . have . value ( '#804040 ' ) ;
404
+ expect ( el ) . to . have . value ( '#874747 ' ) ;
405
405
cy . get ( '@appWrap' ) . click ( ) ;
406
406
} ) ;
407
-
408
407
}
409
408
// & -------------------------------------------------- Date field //
410
409
else if ( field . name === 'date' ) {
0 commit comments