We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53c1d2c commit dee2886Copy full SHA for dee2886
INSTRUCTIONS.md
@@ -22,12 +22,6 @@ One of the instructions has to be present in every command. These properties are
22
- [keys](#keys)
23
- [elementSendKeys](#elementSendKeys)
24
- [wait](#wait)
25
-- [hasAttribute](#hasattribute)
26
-- [hasClass](#hasclass)
27
-- [hasValue](#hasvalue)
28
-- [hasText](#hastext)
29
-- [hasInnerHtml](#hasinnerhtml)
30
-- [hasOuterHtml](#hasouterhtml)
31
- [isExisting](#isexisting)
32
- [isVisible](#isvisible)
33
- [isVisibleWithinViewport](#isvisiblewithinviewport)
@@ -40,6 +34,12 @@ One of the instructions has to be present in every command. These properties are
40
34
- [isNotEnabled](#isnotenabled)
41
35
- [isNotSelected](#isnotselected)
42
36
- [isNotFocused](#isnotfocused)
37
+- [hasAttribute](#hasattribute)
38
+- [hasClass](#hasclass)
39
+- [hasValue](#hasvalue)
+- [hasText](#hastext)
+- [hasInnerHtml](#hasinnerhtml)
+- [hasOuterHtml](#hasouterhtml)
43
- [break](#break)
44
- [abort](#abort)
45
- [file](#file)
README.md
@@ -297,12 +297,6 @@ One of the [instructions] has to be present in every command, otherwise its exec
297
* [keys](INSTRUCTIONS.md#keys)
298
* [elementSendKeys](INSTRUCTIONS.md#elementSendKeys)
299
* [wait](INSTRUCTIONS.md#wait)
300
-* [hasAttribute](INSTRUCTIONS.md#hasattribute)
301
-* [hasClass](INSTRUCTIONS.md#hasclass)
302
-* [hasValue](INSTRUCTIONS.md#hasvalue)
303
-* [hasText](INSTRUCTIONS.md#hastext)
304
-* [hasInnerHtml](INSTRUCTIONS.md#hasinnerhtml)
305
-* [hasOuterHtml](INSTRUCTIONS.md#hasouterhtml)
306
* [isExisting](INSTRUCTIONS.md#isexisting)
307
* [isVisible](INSTRUCTIONS.md#isvisible)
308
* [isVisibleWithinViewport](INSTRUCTIONS.md#isvisiblewithinviewport)
@@ -315,6 +309,12 @@ One of the [instructions] has to be present in every command, otherwise its exec
315
309
* [isNotEnabled](INSTRUCTIONS.md#isnotenabled)
316
310
* [isNotSelected](INSTRUCTIONS.md#isnotselected)
317
311
* [isNotFocused](INSTRUCTIONS.md#isnotfocused)
312
+* [hasAttribute](INSTRUCTIONS.md#hasattribute)
313
+* [hasClass](INSTRUCTIONS.md#hasclass)
314
+* [hasValue](INSTRUCTIONS.md#hasvalue)
+* [hasText](INSTRUCTIONS.md#hastext)
+* [hasInnerHtml](INSTRUCTIONS.md#hasinnerhtml)
+* [hasOuterHtml](INSTRUCTIONS.md#hasouterhtml)
318
* [break](INSTRUCTIONS.md#break)
319
* [abort](INSTRUCTIONS.md#abort)
320
* [file](INSTRUCTIONS.md#file)
tasks/html-dom-snapshot.js
@@ -10,12 +10,13 @@ const mkdirp = require('mkdirp')
10
const instructionKeys = [
11
'setViewport', 'url', 'go', 'scroll', 'focus', 'clearValue', 'setValue',
12
'addValue', 'selectOptionByIndex', 'selectOptionByValue', 'moveCursor',
13
- 'click', 'clickIfVisible', 'keys', 'elementSendKeys', 'wait', 'hasAttribute',
14
- 'hasClass', 'hasValue', 'hasText', 'hasInnerHtml', 'hasOuterHtml',
+ 'click', 'clickIfVisible', 'keys', 'elementSendKeys', 'wait',
15
'isExisting', 'isVisible', 'isVisibleWithinViewport', 'isEnabled',
16
'isSelected', 'isFocused', 'isNotExisting', 'isNotVisible',
17
'isNotVisibleWithinViewport', 'isNotEnabled', 'isNotFocused',
18
- 'isNotSelected', 'break', 'abort'
+ 'isNotSelected', 'hasAttribute', 'hasClass', 'hasValue', 'hasText',
+ 'hasInnerHtml', 'hasOuterHtml',
19
+ 'break', 'abort'
20
]
21
const instructions = instructionKeys.map(instruction =>
require('./instructions/' + instruction))
0 commit comments