We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67d0ce8 commit a2ad6f1Copy full SHA for a2ad6f1
tests/e2e/specs/DropdownStep.js
@@ -0,0 +1,19 @@
1
+module.exports = {
2
+ '@tags': ['ds'],
3
+ 'DropdownStep'(browser) {
4
+ browser
5
+ .init()
6
+ .assert.elementPresent('.control-label > span')
7
+ .click('.control-label > span')
8
+ .assert.not.cssClassPresent('.pagination-next', 'disabled')
9
+ .click('.pagination-next')
10
+ .assert.elementPresent('.select > select')
11
+ .click('.select > select')
12
+ .click('option[value="CC0 1.0"]')
13
14
15
+ .assert.visible('.step-description')
16
+ .assert.containsText('div.step-description', 'CC0 1.0 Universal')
17
+ .end()
18
+ }
19
+}
0 commit comments