├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── config.js ├── config └── cucumber.yml ├── data.csv ├── features ├── alltask │ ├── collect_topic.feature │ ├── delete_topic.feature │ ├── login.feature │ ├── post_topic.feature │ ├── register.feature │ ├── reply.feature │ └── unreadMsg.feature ├── step_definitions │ ├── delete_topic.js │ ├── login.js │ ├── post_topic.js │ ├── register.js │ ├── reply.js │ └── unread.js ├── support │ ├── hooks.js │ └── web_driver.js └── 注册账号.feature └── package.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/README.md -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- 1 | exports.rootUrl = "http://49.233.108.117:3000" -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/data.csv -------------------------------------------------------------------------------- /features/alltask/collect_topic.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/alltask/collect_topic.feature -------------------------------------------------------------------------------- /features/alltask/delete_topic.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/alltask/delete_topic.feature -------------------------------------------------------------------------------- /features/alltask/login.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/alltask/login.feature -------------------------------------------------------------------------------- /features/alltask/post_topic.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/alltask/post_topic.feature -------------------------------------------------------------------------------- /features/alltask/register.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/alltask/register.feature -------------------------------------------------------------------------------- /features/alltask/reply.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/alltask/reply.feature -------------------------------------------------------------------------------- /features/alltask/unreadMsg.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/alltask/unreadMsg.feature -------------------------------------------------------------------------------- /features/step_definitions/delete_topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/step_definitions/delete_topic.js -------------------------------------------------------------------------------- /features/step_definitions/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/step_definitions/login.js -------------------------------------------------------------------------------- /features/step_definitions/post_topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/step_definitions/post_topic.js -------------------------------------------------------------------------------- /features/step_definitions/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/step_definitions/register.js -------------------------------------------------------------------------------- /features/step_definitions/reply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/step_definitions/reply.js -------------------------------------------------------------------------------- /features/step_definitions/unread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/step_definitions/unread.js -------------------------------------------------------------------------------- /features/support/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/support/hooks.js -------------------------------------------------------------------------------- /features/support/web_driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/support/web_driver.js -------------------------------------------------------------------------------- /features/注册账号.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/features/注册账号.feature -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CnodejsTest/UIAutoTest/HEAD/package.json --------------------------------------------------------------------------------