Revert "Fix often occurring bug when testing UI"

This reverts commit 987af951d8.
This commit is contained in:
Théophile Diot 2023-05-04 17:26:35 -04:00
parent 987af951d8
commit 58db1352fa
No known key found for this signature in database
GPG key ID: E752C80DB72BB014

View file

@ -901,6 +901,16 @@ try:
driver, By.XPATH, "//input[@type='file' and @name='file']" driver, By.XPATH, "//input[@type='file' and @name='file']"
).send_keys(join(Path.cwd(), "test.zip")) ).send_keys(join(Path.cwd(), "test.zip"))
access_page(
driver,
driver_wait,
"//div[@data-plugins-upload='']//button[@type='submit']",
"plugins",
False,
)
assert_alert_message(driver, "is not a valid plugin")
print( print(
"The bad plugin has been rejected, trying to add a good plugin ...", "The bad plugin has been rejected, trying to add a good plugin ...",
flush=True, flush=True,
@ -918,6 +928,8 @@ try:
False, False,
) )
assert_alert_message(driver, "Successfully created plugin")
external_plugins = safe_get_element( external_plugins = safe_get_element(
driver, driver,
By.XPATH, By.XPATH,