tests - fix new string value for deactivated plugins

This commit is contained in:
florian 2024-04-28 17:23:14 +02:00
parent dbf73fa9f0
commit 4228efd211
No known key found for this signature in database
GPG key ID: 93EE47CC3D061500

View file

@ -114,7 +114,7 @@ try:
first_card = safe_get_element(DRIVER, By.XPATH, "/html/body/main/div/div/div/div[1]/h5")
assert isinstance(first_card, WebElement), "First card is not a WebElement"
if first_card.text != "Deactivated":
if first_card.text != "Plugin deactivated":
log_error(f"The {plugin} page should show that the plugin is deactivated, exiting ...")
exit(1)