mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
tests - fix new string value for deactivated plugins
This commit is contained in:
parent
dbf73fa9f0
commit
4228efd211
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue