Я пытаюсь реализовать пользовательский метод ExpectedConditions, который будет ожидать изменения атрибута элемента.
Вот мое решение:
const ECC = function() {
/**
* Expect element attribute to have specific value.
*
* @param {ElementFinder} elementFinder
* @param {string} attrName attribute name to check
* @param {string} attrVal attribute value to check for
*
* @return {boolean}
*/
this.attributeToHave = async (elementFinder, attrName, attrVal) => {
const EC = protractor.ExpectedConditions;
const hasAttr = async () => {
const actualText = elementFinder.getAttribute(attrName);
return actualText.indexOf(attrVal) !== -1;
};
return await EC.and(EC.presenceOf(elementFinder), await hasAttr);
};
};
module.exports = new ECC();
И в моем onPrepare
:
const {expectedConditions} = require('@utils/protractor');
global.ECC = expectedConditions;
И, наконец, в моем наборе тестов:
await browser.wait(await ECC.attributeToHave(dropdown, 'aria-hidden', 'false'), 3000);
Но он продолжает говорить Failed: Wait timed out after 3006ms
, Что я делаю не так, пожалуйста?