()
| 106 | |
| 107 | |
| 108 | const addElement = async function () { |
| 109 | await addButton.click(); |
| 110 | |
| 111 | lastAddedElementId += 1; |
| 112 | const newElement = await getElement(lastAddedElementId); |
| 113 | |
| 114 | elements.push(newElement); |
| 115 | }; |
| 116 | |
| 117 | const removeElement = async (index?: number) => { |
| 118 | if (index) { |
no test coverage detected