Make the selenium test log the content of the /assert report to the console

This commit is contained in:
Caleb James DeLisle 2017-01-12 12:03:14 +01:00
parent 6c5e8d3118
commit 512c1b12f4
1 changed files with 11 additions and 8 deletions

View File

@ -19,6 +19,8 @@ if (process.env.SAUCE_USERNAME !== undefined) {
driver.get('http://localhost:3000/assert/');
var report = driver.wait(WebDriver.until.elementLocated(WebDriver.By.className("report")), 5000);
report.getAttribute("class").then(function (cls) {
report.getText().then(function (text) {
console.log("\n-----\n" + text + "\n-----");
driver.quit();
if (!cls) {
throw new Error("cls is null");
@ -28,3 +30,4 @@ report.getAttribute("class").then(function (cls) {
throw new Error("cls does not contain the word success");
}
});
});