跳至主要内容

isFocused

如果选定的 DOM 元素当前具有焦点,则返回 true 或 false。如果选择器匹配多个元素,则如果其中一个元素具有焦点,则返回 true。

用法
$(selector).isFocused()
示例
index.html
<input name="login" autofocus="" />
hasFocus.js
it('should detect the focus of an element', async () => {
await browser.url('/');
const loginInput = await $('[name="login"]');
console.log(await loginInput.isFocused()); // outputs: false

await loginInput.click();
console.log(await loginInput.isFocused()); // outputs: true
})

欢迎!我如何帮助您?

WebdriverIO AI Copilot