- 批量修改填写人:添加左侧分类列表、折叠功能、暂存和重新分配 - 审核页面:添加折叠和分页功能 - 查询分析页面:添加单位列显示 - 人员管理:创建独立页面,支持搜索、分页、批量操作 - 修复各种UI和功能问题
22 lines
521 B
JavaScript
22 lines
521 B
JavaScript
// For authoring Nightwatch tests, see
|
|
// https://nightwatchjs.org/guide
|
|
|
|
module.exports = {
|
|
'default e2e tests': browser => {
|
|
browser
|
|
.init()
|
|
.waitForElementVisible('#app')
|
|
.assert.elementPresent('.hello')
|
|
.assert.containsText('h1', 'Welcome to Your Vue.js App')
|
|
.assert.elementCount('img', 1)
|
|
.end()
|
|
},
|
|
|
|
'example e2e test using a custom command': browser => {
|
|
browser
|
|
.openHomepage()
|
|
.assert.elementPresent('.hello')
|
|
.end()
|
|
}
|
|
}
|