()
| 98 | }); |
| 99 | |
| 100 | const addElement = async function () { |
| 101 | await addButton.click(); |
| 102 | |
| 103 | lastAddedElementId += 1; |
| 104 | const newElement = await driver.findElementByAutomationText( |
| 105 | lastAddedElementId.toString()); |
| 106 | |
| 107 | elements.push(newElement); |
| 108 | }; |
| 109 | |
| 110 | const removeElement = async (index?: number) => { |
| 111 | index; |
no test coverage detected