File: tabs_test.js

package info (click to toggle)
json-editor.js 1.3.2%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,700 kB
  • sloc: javascript: 10,168; perl: 39; makefile: 5
file content (13 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13

Feature('Tabs');

Scenario('test top-tabs', (I) => {
    I.amOnPage('tabs.html');
    I.click('Add Person');
    I.see('1 -');
    I.see('validation failed')
    I.fillField('root[1][name]', 'Somebody')
    //pause();
    I.click('body')
    I.see('validation passed')
});