mirror of
https://github.com/gchq/CyberChef
synced 2025-01-12 04:28:53 +00:00
Improve bake test tolerance
This commit is contained in:
parent
286836d183
commit
891e12ae47
1 changed files with 3 additions and 3 deletions
|
@ -52,13 +52,13 @@ function setInput(browser, input, type=true) {
|
|||
function bake(browser) {
|
||||
browser
|
||||
// Ensure we're not currently busy
|
||||
.waitForElementNotVisible("#output-loader", 5000)
|
||||
.waitForElementNotVisible("#output-loader", 6000)
|
||||
.expect.element("#bake span").text.to.equal("BAKE!");
|
||||
|
||||
browser
|
||||
.click("#bake")
|
||||
.waitForElementNotVisible("#stale-indicator", 5000)
|
||||
.waitForElementNotVisible("#output-loader", 5000);
|
||||
.waitForElementNotVisible("#stale-indicator", 6000)
|
||||
.waitForElementNotVisible("#output-loader", 6000);
|
||||
}
|
||||
|
||||
/** @function
|
||||
|
|
Loading…
Reference in a new issue