| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /**
- * Checks if the given element contains the specified text.
- *
- * ```
- * this.demoTest = function (client) {
- * browser.assert.containsText('#main', 'The Night Watch');
- * };
- * ```
- *
- * @method containsText
- * @param {string} selector The selector (CSS / Xpath) used to locate the element.
- * @param {string} expectedText The text to look for.
- * @param {string} [message] Optional log message to display in the output. If missing, one is displayed by default.
- * @api assertions
- */
- var util = require('util');
- exports.assertion = function(selector, expectedText, msg) {
- var MSG_ELEMENT_NOT_FOUND = 'Testing if element <%s> contains text: "%s". ' +
- 'Element could not be located.';
- this.message = msg || util.format('Testing if element <%s> contains text: "%s".', selector, expectedText);
- this.expected = function() {
- return expectedText;
- };
- this.pass = function(value) {
- return value.indexOf(expectedText) > -1;
- };
- this.failure = function(result) {
- var failed = result === false || result && result.status === -1;
- if (failed) {
- this.message = msg || util.format(MSG_ELEMENT_NOT_FOUND, selector, expectedText);
- }
- return failed;
- };
- this.value = function(result) {
- return result.value;
- };
- this.command = function(callback) {
- return this.api.getText(selector, callback);
- };
- };
|