(xpath)
| 82 | // Custom seeDisabledAttribute function. |
| 83 | // Evaluates true if xpath is disabled |
| 84 | async seeDisabledAttribute (xpath) { |
| 85 | const helper = this.helpers['Puppeteer'] || this.helpers['WebDriver'] |
| 86 | return await helper.waitForElement(xpath + ':disabled') |
| 87 | } |
| 88 | |
| 89 | // Custom dontSeeDisabledAttributet function. |
| 90 | // Evaluates true if xpath is not disabled |
no outgoing calls
no test coverage detected