testilo 44.0.0 → 44.1.1

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": "44.0.0",
3
+ "version": "44.1.1",
4
4
  "description": "Prepares Testaro jobs and processes Testaro reports",
5
5
  "main": "call.js",
6
6
  "scripts": {
@@ -8641,6 +8641,11 @@ exports.issues = {
8641
8641
  variable: false,
8642
8642
  quality: 1,
8643
8643
  what: 'Page includes more than 1 visible main element'
8644
+ },
8645
+ 'A document should not include more than one visible element with role=main.': {
8646
+ variable: false,
8647
+ quality: 1,
8648
+ what: 'Page includes more than 1 visible element with a main role'
8644
8649
  }
8645
8650
  },
8646
8651
  nuVnu: {
@@ -8648,6 +8653,11 @@ exports.issues = {
8648
8653
  variable: false,
8649
8654
  quality: 1,
8650
8655
  what: 'Page includes more than 1 visible main element'
8656
+ },
8657
+ 'A document should not include more than one visible element with role=main.': {
8658
+ variable: false,
8659
+ quality: 1,
8660
+ what: 'Page includes more than 1 visible element with a main role'
8651
8661
  }
8652
8662
  },
8653
8663
  wax: {
package/script.js CHANGED
@@ -219,7 +219,13 @@ exports.script = (id, what, deviceID, options = {}) => {
219
219
  }
220
220
  else if (toolID === 'ibm') {
221
221
  toolAct.withItems = true;
222
- toolAct.withNewContent = true;
222
+ toolAct.withNewContent = false;
223
+ }
224
+ else if (toolID === 'nuVal') {
225
+ toolAct.withSource = false;
226
+ }
227
+ else if (toolID === 'nuVnu') {
228
+ toolAct.withSource = false;
223
229
  }
224
230
  else if (toolID === 'qualWeb') {
225
231
  toolAct.withNewContent = false;