deployment: find_element instead of find_elements in openvidu_health_check

pull/664/head
cruizba 2021-11-03 20:50:42 +01:00
parent 00d2e3e5fa
commit e32330ad95
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class InfraSmokeTests(unittest.TestCase):
video_error = False
try:
self.driver.find_elements(By.XPATH, "//*[contains(text(), 'Stream playing')]")
self.driver.find_element(By.XPATH, "//*[contains(text(), 'Stream playing')]")
except:
video_error = True
finally: