File: advanced_test.js

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

Feature('Advanced Editor');

Scenario('test validation & delete', (I) => {
    I.amOnPage('advanced.html');
    //pause()
    I.seeElement('#valid_indicator');
    I.see('valid', '#valid_indicator');
    I.fillField('root[0][location][city]', 'Stuttgart');
    I.seeInField('root[0][location][city]', 'Stuttgart');
    I.click('.json-editor-btn-delete');
});