testilo 42.1.6 → 42.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "42.1.6",
3
+ "version": "42.1.8",
4
4
  "description": "Prepares Testaro jobs and processes Testaro reports",
5
5
  "main": "call.js",
6
6
  "scripts": {
@@ -569,20 +569,25 @@ exports.issues = {
569
569
  }
570
570
  },
571
571
  wax: {
572
- 'This textinput element does not have a name available to an accessibility API. Valid names are: label element, title , aria-label , aria-labelledby , aria-description , aria-describedby .': {
572
+ 'Provide accessible names for ARIA input fields.': {
573
573
  variable: false,
574
574
  quality: 1,
575
- what: 'text input element has no accessible name'
575
+ what: 'Element with an input role has no accessible name'
576
576
  },
577
577
  'This emailinput element does not have a name available to an accessibility API. Valid names are: label element, title , aria-label , aria-labelledby , aria-description , aria-describedby .': {
578
578
  variable: false,
579
579
  quality: 1,
580
580
  what: 'email input element has no accessible name'
581
581
  },
582
- 'Provide accessible names for ARIA input fields.': {
582
+ 'This searchinput element does not have a name available to an accessibility API. Valid names are: label element, title , aria-label , aria-labelledby , aria-description , aria-describedby .': {
583
583
  variable: false,
584
584
  quality: 1,
585
- what: 'Element with an input role has no accessible name'
585
+ what: 'search input element has no accessible name'
586
+ },
587
+ 'This textinput element does not have a name available to an accessibility API. Valid names are: label element, title , aria-label , aria-labelledby , aria-description , aria-describedby .': {
588
+ variable: false,
589
+ quality: 1,
590
+ what: 'text input element has no accessible name'
586
591
  }
587
592
  }
588
593
  }
@@ -835,6 +840,21 @@ exports.issues = {
835
840
  }
836
841
  }
837
842
  },
843
+ svgNoText: {
844
+ summary: 'SVG image not named',
845
+ why: 'User cannot get help to know what is in an image',
846
+ wcag: '1.1.1',
847
+ weight: 4,
848
+ tools: {
849
+ wax: {
850
+ 'Add alternative text to <svg> elements with an img, graphics-document, or graphics-symbol role.': {
851
+ variable: false,
852
+ quality: 1,
853
+ what: 'Element is svg with an image role but has no accessible name'
854
+ }
855
+ }
856
+ }
857
+ },
838
858
  imageTextSpaces: {
839
859
  summary: 'image name contains only spacing characters',
840
860
  why: 'User cannot get help understanding an image',
@@ -1976,6 +1996,11 @@ exports.issues = {
1976
1996
  }
1977
1997
  },
1978
1998
  wax: {
1999
+ '^This form control contains an aria-labelledby attribute, however it includes an ID "[^"]+" that does not exist on an element. The aria-labelledby attribute will be ignored for labelling test purposes\.$': {
2000
+ variable: true,
2001
+ quality: 1,
2002
+ what: 'aria-labelledby value is not the id of any element'
2003
+ },
1979
2004
  'This label\'s "for" attribute contains an ID that does not exist in the document fragment.': {
1980
2005
  variable: false,
1981
2006
  quality: 1,
@@ -4276,6 +4301,11 @@ exports.issues = {
4276
4301
  variable: false,
4277
4302
  quality: 1,
4278
4303
  what: 'Element has no valid ARIA role but has an aria-roledescription attribute'
4304
+ },
4305
+ 'Use only valid ARIA attributes that conform to specifications.': {
4306
+ variable: false,
4307
+ quality: 1,
4308
+ what: 'Element has an invalid ARIA attribute'
4279
4309
  }
4280
4310
  }
4281
4311
  }
@@ -7296,6 +7326,13 @@ exports.issues = {
7296
7326
  quality: 1,
7297
7327
  what: 'main landmark is not at the top level'
7298
7328
  }
7329
+ },
7330
+ wax: {
7331
+ 'Place the main landmark at the top level, not within another landmark.': {
7332
+ variable: false,
7333
+ quality: 1,
7334
+ what: 'main landmark is not at the top level'
7335
+ }
7299
7336
  }
7300
7337
  }
7301
7338
  },
@@ -7362,6 +7399,13 @@ exports.issues = {
7362
7399
  quality: 1,
7363
7400
  what: 'Page includes more than 1 visible main element'
7364
7401
  }
7402
+ },
7403
+ wax: {
7404
+ 'Include only one main landmark in the document.': {
7405
+ variable: false,
7406
+ quality: 1,
7407
+ what: 'Page includes more than 1 main element'
7408
+ }
7365
7409
  }
7366
7410
  }
7367
7411
  },
@@ -7419,6 +7463,13 @@ exports.issues = {
7419
7463
  quality: 1,
7420
7464
  what: 'banner landmark is not at the top level'
7421
7465
  }
7466
+ },
7467
+ wax: {
7468
+ 'Place the banner landmark at the top level, not within another landmark.': {
7469
+ variable: false,
7470
+ quality: 1,
7471
+ what: 'banner is within another landmark'
7472
+ }
7422
7473
  }
7423
7474
  }
7424
7475
  },