forked from cory/tildefriends
		
	Add retries around some 'test -t auto' intermittent failures.
This commit is contained in:
		| @@ -56,7 +56,13 @@ try: | |||||||
|  |  | ||||||
| 	wait.until(expected_conditions.presence_of_element_located((By.ID, 'create_id'))).click() | 	wait.until(expected_conditions.presence_of_element_located((By.ID, 'create_id'))).click() | ||||||
| 	driver.switch_to.alert.accept() | 	driver.switch_to.alert.accept() | ||||||
|  | 	# StaleElementReferenceException | ||||||
|  | 	while True: | ||||||
|  | 		try: | ||||||
| 			id0 = wait.until(expected_conditions.presence_of_element_located((By.TAG_NAME, 'li'))).text.split(' ')[-1] | 			id0 = wait.until(expected_conditions.presence_of_element_located((By.TAG_NAME, 'li'))).text.split(' ')[-1] | ||||||
|  | 			break | ||||||
|  | 		except: | ||||||
|  | 			pass | ||||||
| 	wait.until(expected_conditions.presence_of_element_located((By.XPATH, '//li/button[text()="Export Identity"]'))).click() | 	wait.until(expected_conditions.presence_of_element_located((By.XPATH, '//li/button[text()="Export Identity"]'))).click() | ||||||
| 	driver.switch_to.default_content() | 	driver.switch_to.default_content() | ||||||
| 	wait.until(expected_conditions.presence_of_element_located((By.XPATH, '//button[text()="✅ Allow"]'))).click() | 	wait.until(expected_conditions.presence_of_element_located((By.XPATH, '//button[text()="✅ Allow"]'))).click() | ||||||
| @@ -115,7 +121,13 @@ try: | |||||||
|  |  | ||||||
| 	wait.until(expected_conditions.presence_of_element_located((By.ID, 'content'))) | 	wait.until(expected_conditions.presence_of_element_located((By.ID, 'content'))) | ||||||
|  |  | ||||||
|  | 	# NoSuchElementException | ||||||
|  | 	while True: | ||||||
|  | 		try: | ||||||
| 			driver.find_element(By.TAG_NAME, 'tf-navigation').shadow_root.find_element(By.LINK_TEXT, 'logout testuser').click() | 			driver.find_element(By.TAG_NAME, 'tf-navigation').shadow_root.find_element(By.LINK_TEXT, 'logout testuser').click() | ||||||
|  | 			break | ||||||
|  | 		except: | ||||||
|  | 			pass | ||||||
| 	driver.find_element(By.TAG_NAME, 'tf-auth').shadow_root.find_element(By.ID, 'guest_label').click() | 	driver.find_element(By.TAG_NAME, 'tf-auth').shadow_root.find_element(By.ID, 'guest_label').click() | ||||||
| 	driver.find_element(By.TAG_NAME, 'tf-auth').shadow_root.find_element(By.ID, 'guestButton').click() | 	driver.find_element(By.TAG_NAME, 'tf-auth').shadow_root.find_element(By.ID, 'guestButton').click() | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user