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 71ef07d commit 7a2e8b3Copy full SHA for 7a2e8b3
tests/runTests.js
@@ -90,6 +90,14 @@ module.exports = {
90
.end();
91
},
92
93
+ "test elementHasChildrenCount": function(browser) {
94
+ return browser
95
+ .url(baseurl+"/children")
96
+ .assert.elementHasChildrenCount(".myclass")
97
+ .assert.elementHasChildrenCount(".myclass", "li")
98
+ .end();
99
+ },
100
+
101
"test elementHasNoChildren": function(browser) {
102
return browser
103
.url(baseurl+"/nochildren")
0 commit comments