Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyRacer1337 committed Mar 5, 2024
1 parent c750b00 commit d71ab66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/web/namer_web_pageobjects.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def __init__(self, driver: WebDriver):
self.__refresh = wait_for_and_find(driver, By.ID, 'refreshFiles')
self.__noFailedFiles = find_if_present(driver, By.CSS_SELECTOR, '#filesResult div[class="col m-1 text-center"] span')
if self.__noFailedFiles is None:
self.__page_links = wait_for_and_find_all(driver, by=By.CSS_SELECTOR, value='a[class="page-link"]')
self.__page_links = wait_for_and_find_all(driver, by=By.CSS_SELECTOR, value='a[class*="page-link"]')
self.__search = wait_for_and_find(driver, by=By.CSS_SELECTOR, value='input[type="search"]')
wait_for_and_find(driver, by=By.CSS_SELECTOR, value='table[id*="failed"] tbody')
self.__items = wait_for_and_find_all(driver, by=By.CSS_SELECTOR, value='table[id*="failed"] tbody tr')
Expand Down

0 comments on commit d71ab66

Please sign in to comment.