ohif-viewer/LesionTracker/tests/nightwatch/commands/sectionBreak.js
2016-01-26 17:57:50 +01:00

10 lines
283 B
JavaScript

exports.command = function(input, callback) {
this
.frame(null)
.waitForElementVisible("body", 1000, "=============================================================")
.verify.elementPresent("body", "== " + input)
return this; // allows the command to be chained.
};