Перейти к основному содержимому

getAttribute

Обзор

Используйте команду getAttribute, чтобы получить атрибут из DOM-элемента на основе имени атрибута.

Использование

await browser.$(selector).getAttribute(attributeName);

Параметры команды

ИмяТипОписание
attributeNameStringИмя запрашиваемого атрибута.

Примеры использования

index.html

<form action="/submit" method="post" class="loginForm">
<input type="text" name="name" placeholder="username"></input>
<input type="text" name="password" placeholder="password"></input>
<input type="submit" name="submit" value="submit"></input>
</form>

getAttribute.js

it("should demonstrate the getAttribute command", async ({ browser }) => {
const form = await browser.$("form");
const attr = await form.getAttribute("method");
console.log(attr); // выведет: "post"
});