Fixed UI tests to work with new input and output areas
This commit is contained in:
parent
bf949c0320
commit
9cbf217d42
@ -82,7 +82,7 @@ module.exports = {
|
|||||||
// Enter input
|
// Enter input
|
||||||
browser
|
browser
|
||||||
.useCss()
|
.useCss()
|
||||||
.setValue("#input-text", "Don't Panic.") // TODO
|
.sendKeys("#input-text .cm-content", "Don't Panic.")
|
||||||
.pause(1000)
|
.pause(1000)
|
||||||
.click("#bake");
|
.click("#bake");
|
||||||
|
|
||||||
@ -90,7 +90,7 @@ module.exports = {
|
|||||||
browser
|
browser
|
||||||
.useCss()
|
.useCss()
|
||||||
.waitForElementNotVisible("#stale-indicator", 1000)
|
.waitForElementNotVisible("#stale-indicator", 1000)
|
||||||
.expect.element("#output-text").to.have.property("value").that.equals("44 6f 6e 27 74 20 50 61 6e 69 63 2e"); // TODO
|
.expect.element("#output-text .cm-content").to.have.property("textContent").that.equals("44 6f 6e 27 74 20 50 61 6e 69 63 2e");
|
||||||
|
|
||||||
// Clear recipe
|
// Clear recipe
|
||||||
browser
|
browser
|
||||||
@ -206,7 +206,7 @@ module.exports = {
|
|||||||
.useCss()
|
.useCss()
|
||||||
.waitForElementVisible(".operation .op-title", 1000)
|
.waitForElementVisible(".operation .op-title", 1000)
|
||||||
.waitForElementNotVisible("#stale-indicator", 1000)
|
.waitForElementNotVisible("#stale-indicator", 1000)
|
||||||
.expect.element("#output-text").to.have.property("value").which.matches(/[\da-f-]{36}/); // TODO
|
.expect.element("#output-text .cm-content").to.have.property("textContent").which.matches(/[\da-f-]{36}/);
|
||||||
|
|
||||||
browser.click("#clr-recipe");
|
browser.click("#clr-recipe");
|
||||||
},
|
},
|
||||||
|
@ -410,16 +410,16 @@ function bakeOp(browser, opName, input, args=[]) {
|
|||||||
.click("#clr-recipe")
|
.click("#clr-recipe")
|
||||||
.click("#clr-io")
|
.click("#clr-io")
|
||||||
.waitForElementNotPresent("#rec-list li.operation")
|
.waitForElementNotPresent("#rec-list li.operation")
|
||||||
.expect.element("#input-text").to.have.property("value").that.equals(""); // TODO
|
.expect.element("#input-text .cm-content").to.have.property("textContent").that.equals("");
|
||||||
|
|
||||||
browser
|
browser
|
||||||
.perform(function() {
|
.perform(function() {
|
||||||
console.log(`Current test: ${opName}`);
|
console.log(`Current test: ${opName}`);
|
||||||
})
|
})
|
||||||
.urlHash("recipe=" + recipeConfig)
|
.urlHash("recipe=" + recipeConfig)
|
||||||
.setValue("#input-text", input) // TODO
|
.sendKeys("#input-text .cm-content", input)
|
||||||
.waitForElementPresent("#rec-list li.operation")
|
.waitForElementPresent("#rec-list li.operation")
|
||||||
.expect.element("#input-text").to.have.property("value").that.equals(input); // TODO
|
.expect.element("#input-text .cm-content").to.have.property("textContent").that.equals(input);
|
||||||
|
|
||||||
browser
|
browser
|
||||||
.waitForElementVisible("#stale-indicator", 5000)
|
.waitForElementVisible("#stale-indicator", 5000)
|
||||||
@ -444,9 +444,9 @@ function testOp(browser, opName, input, output, args=[]) {
|
|||||||
bakeOp(browser, opName, input, args);
|
bakeOp(browser, opName, input, args);
|
||||||
|
|
||||||
if (typeof output === "string") {
|
if (typeof output === "string") {
|
||||||
browser.expect.element("#output-text").to.have.property("value").that.equals(output); // TODO
|
browser.expect.element("#output-text .cm-content").to.have.property("textContent").that.equals(output);
|
||||||
} else if (output instanceof RegExp) {
|
} else if (output instanceof RegExp) {
|
||||||
browser.expect.element("#output-text").to.have.property("value").that.matches(output); // TODO
|
browser.expect.element("#output-text .cm-content").to.have.property("textContent").that.matches(output);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user