(path, fileDialog)
| 72 | } |
| 73 | |
| 74 | function findBreadcrumbElement(path, fileDialog) { |
| 75 | const pathElements = getBreadcrumbElements(fileDialog); |
| 76 | return pathElements.find(element => element.innerText === path); |
| 77 | } |
| 78 | |
| 79 | function getBreadcrumbNames(fileDialog) { |
| 80 | const elements = getBreadcrumbElements(fileDialog); |
no test coverage detected