Skip to content

Commit 3bc09ed

Browse files
committed
TMP
1 parent 135316e commit 3bc09ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/pages/pages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -974,7 +974,7 @@ def wait_until_current(self, time=10):
974974

975975
def get_job_info(self, job_id):
976976
link_element = self.wait_for_element((By.CSS_SELECTOR, f"a[href*='/jobs/{job_id}']"))
977-
next_td = link_element.find_element((By.XPATH, "./ancestor::td[1]/following-sibling::td"))
977+
next_td = link_element.find_element(By.XPATH, "./ancestor::td[1]/following-sibling::td")
978978
next_td_text = next_td.get_property("innerText")
979979
return link_element, {
980980
k: int(re.match(rf"\b(\d+)\s+{k}\b", next_td_text).group(1)) for k in ("delivering", "delivered", "failed")

0 commit comments

Comments
 (0)