@@ -64,7 +64,7 @@ webdriver.WebDriver = function() {};
64
64
webdriver . WebDriver . prototype . actions = function ( ) { } ;
65
65
66
66
/**
67
- * Schedules a command to wait for a condition to hold.
67
+ * Schedules a command to wait for a condition to hold.
68
68
*
69
69
* This function may be used to block the command flow on the resolution
70
70
* of a {@link webdriver.promise.Promise promise}. When given a promise, the
@@ -82,7 +82,7 @@ webdriver.WebDriver.prototype.actions = function() {};
82
82
* var started = startTestServer();
83
83
* browser.wait(started, 5 * 1000, 'Server should start within 5 seconds');
84
84
* browser.get(getServerUrl());
85
- *
85
+ *
86
86
* @param {!(webdriver.promise.Promise<T>|
87
87
* webdriver.until.Condition<T>|
88
88
* function(!webdriver.WebDriver): T)} condition The condition to
@@ -380,8 +380,8 @@ webdriver.WebElement.prototype.getAttribute = function(attributeName) {};
380
380
381
381
382
382
/**
383
- * Get the visible (i.e. not hidden by CSS) innerText of this element, including
384
- * sub-elements, without any leading or trailing whitespace.
383
+ * Get the visible innerText of this element, including sub-elements, without
384
+ * any leading or trailing whitespace. Visible elements are not hidden by CSS .
385
385
*
386
386
* @view
387
387
* <div id="foo" class="bar">Inner text</div>
0 commit comments