- 批量修改填写人:添加左侧分类列表、折叠功能、暂存和重新分配 - 审核页面:添加折叠和分页功能 - 查询分析页面:添加单位列显示 - 人员管理:创建独立页面,支持搜索、分页、批量操作 - 修复各种UI和功能问题
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
/**
|
|
* A custom Nightwatch assertion. The assertion name is the filename.
|
|
*
|
|
* Example usage:
|
|
* browser.assert.elementCount(selector, count)
|
|
*
|
|
* For more information on custom assertions see:
|
|
* https://nightwatchjs.org/guide/extending-nightwatch/#writing-custom-assertions
|
|
*
|
|
*
|
|
* @param {string|object} selectorOrObject
|
|
* @param {number} count
|
|
*/
|
|
|
|
exports.assertion = function elementCount(selectorOrObject, count) {
|
|
let selector
|
|
|
|
// when called from a page object element or section
|
|
if (typeof selectorOrObject === 'object' && selectorOrObject.selector) {
|
|
// eslint-disable-next-line prefer-destructuring
|
|
selector = selectorOrObject.selector
|
|
} else {
|
|
selector = selectorOrObject
|
|
}
|
|
|
|
this.message = `Testing if element <${selector}> has count: ${count}`
|
|
this.expected = count
|
|
this.pass = val => val === count
|
|
this.value = res => res.value
|
|
function evaluator(_selector) {
|
|
return document.querySelectorAll(_selector).length
|
|
}
|
|
this.command = cb => this.api.execute(evaluator, [selector], cb)
|
|
}
|