For retrieving the list of progress dictionary elements. Args: driver: WebDriver instance Returns: A callable that returns the list of progress dictionary elements.
(driver: WebDriver)
| 473 | |
| 474 | @pytest.fixture |
| 475 | def progress_dicts(driver: WebDriver) -> Callable[[], list[WebElement]]: |
| 476 | """For retrieving the list of progress dictionary elements. |
| 477 | |
| 478 | Args: |
| 479 | driver: WebDriver instance |
| 480 | |
| 481 | Returns: |
| 482 | A callable that returns the list of progress dictionary elements. |
| 483 | """ |
| 484 | return _wrap_find_elements_by_xpath(driver, "//*[@id='progress_dicts']/p") |
| 485 | |
| 486 | |
| 487 | @pytest.fixture |
no test coverage detected