(elementID, text)
| 211 | } |
| 212 | |
| 213 | static async checkIfElementHasString(elementID, text) { |
| 214 | return expect(element(by.id(elementID))).toString(text); |
| 215 | } |
| 216 | |
| 217 | static checkIfToggleIsOn(elementID) { |
| 218 | return expect(element(by.id(elementID))).toHaveToggleValue(true); |
no test coverage detected