le1tuan / nightwatch-wrapper

1 stars 0 forks source link

design the system and how convert from json to code #2

Open le1tuan opened 5 years ago

le1tuan commented 5 years ago

Viết ở trong file này

https://github.com/le1tuan/nightwatch-wrapper/blob/master/src/test.js

  1. Tạo file trong folder test với mỗi test case với nội dung là code của night-watch
  2. Code nightwatch của test case cần generate ra như thế này
    module.exports = {
    'Demo test Google' : function (client) {
    client
      .url('http://localhost:3000/')
      .waitForElementVisible('body', 1000)
      .setValue('#username', 'abc')
      .setValue('#password', '123')
      . assert.value("#username", "abc")
      .end();
    }
    };
binhduongquang commented 5 years ago

llalpodkqwopdqwd