diff options
author | wei <> | 2006-01-24 01:49:53 +0000 |
---|---|---|
committer | wei <> | 2006-01-24 01:49:53 +0000 |
commit | c5f2fb2c77e7140277349d5b1f1a8f6017909dc6 (patch) | |
tree | e5e3c4a48e600fad0568836b674c54a8cbc59f56 /tests/FunctionalTests/selenium/prado-functional-test.js | |
parent | aa86c856381014ff5881fab590942554e432f917 (diff) |
Added assertHTMLPresent and assertHTMLNotPresent
Diffstat (limited to 'tests/FunctionalTests/selenium/prado-functional-test.js')
-rw-r--r-- | tests/FunctionalTests/selenium/prado-functional-test.js | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/tests/FunctionalTests/selenium/prado-functional-test.js b/tests/FunctionalTests/selenium/prado-functional-test.js index 37e26516..be2ea795 100644 --- a/tests/FunctionalTests/selenium/prado-functional-test.js +++ b/tests/FunctionalTests/selenium/prado-functional-test.js @@ -172,4 +172,21 @@ function get_color_status(element) if(color == failColor) return "failed"; if(color == doneColor) return "done"; return ""; -}
\ No newline at end of file +} + + + + +Selenium.prototype.assertHTMLPresent = function(expectedValue) { + var actualValue = this.page().currentDocument.body.innerHTML; + if(actualValue.indexOf(expectedValue) >= 0) + return; + Assert.fail("Unable to find '"+(expectedValue.replace(/</g, "<").replace(/>/g, ">").replace(/"/g, "\""))+"' in document.body"); +}; + +Selenium.prototype.assertHTMLNotPresent = function(expectedValue) { + var actualValue = this.page().currentDocument.body.innerHTML; + if(actualValue.indexOf(expectedValue) < 0) + return; + Assert.fail("'"+(expectedValue.replace(/</g, "<").replace(/>/g, ">").replace(/"/g, "\""))+"' was found in document.body"); +};
\ No newline at end of file |