.axeInject() 建议编辑
自:2.3.6将 axe-core js 库注入到当前页面(使用 .executeScript()
命令)。
与 .axeRun()
配合使用以评估 axe-core 可访问性规则。
用法
browser.axeInject()
示例
describe('accessibility testing', function () {
it('accessibility rule subset', function (browser) {
browser
.url('https://www.w3.org/WAI/demos/bad/after/home.html')
.assert.titleEquals('Welcome to CityLights! [Accessible Home Page]')
.axeInject()
.axeRun('body', {
runOnly: ['color-contrast', 'image-alt'],
});
});
});