mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
fix failing tests
This commit is contained in:
parent
704c0a0bcd
commit
53a5c1cc84
Binary file not shown.
Before Width: | Height: | Size: 358 KiB After Width: | Height: | Size: 358 KiB |
@ -79,13 +79,13 @@ class TestDemo(unittest.TestCase):
|
||||
driver = self.start_test(target=diff_texts_thread)
|
||||
elem = WebDriverWait(driver, TIMEOUT).until(
|
||||
EC.presence_of_element_located((By.CSS_SELECTOR,
|
||||
".panel:nth-child(1) .component:nth-child(1) .input_text"))
|
||||
".panel:nth-child(1) .component:nth-child(1) .input_text textarea"))
|
||||
)
|
||||
elem.clear()
|
||||
elem.send_keys("Want to see a magic trick?")
|
||||
elem = WebDriverWait(driver, TIMEOUT).until(
|
||||
EC.presence_of_element_located((By.CSS_SELECTOR,
|
||||
".panel:nth-child(1) .component:nth-child(2) .input_text"))
|
||||
".panel:nth-child(1) .component:nth-child(2) .input_text textarea"))
|
||||
)
|
||||
elem.clear()
|
||||
elem.send_keys("Let's go see a magic trick!")
|
||||
@ -146,7 +146,7 @@ class TestDemo(unittest.TestCase):
|
||||
driver = self.start_test(target=longest_word_thread)
|
||||
elem = WebDriverWait(driver, TIMEOUT).until(
|
||||
EC.presence_of_element_located((By.CSS_SELECTOR,
|
||||
".panel:nth-child(1) .component:nth-child(1) .input_text"))
|
||||
".panel:nth-child(1) .component:nth-child(1) .input_text textarea"))
|
||||
)
|
||||
elem.send_keys("This is the most wonderful machine learning "
|
||||
"library.")
|
||||
@ -190,7 +190,7 @@ class TestDemo(unittest.TestCase):
|
||||
total_sleep += 0.2
|
||||
|
||||
self.assertEqual(
|
||||
elem.text, "The 2 cats went to the park where they until the night")
|
||||
elem.text, "The 2 cats went to the park where they until the night")
|
||||
golden_img = os.path.join(current_dir, GOLDEN_PATH.format(
|
||||
"sentence_builder", "two_cats"))
|
||||
tmp = os.path.join(current_dir, "test/tmp/{}.png".format(
|
||||
|
Loading…
x
Reference in New Issue
Block a user