Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 43c11fe

Browse files
committed
fix(website): edit getText JSDoc for shortDescription
closes #3233
1 parent 248ed99 commit 43c11fe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: lib/selenium-webdriver/webdriver.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ webdriver.WebDriver = function() {};
6464
webdriver.WebDriver.prototype.actions = function() {};
6565

6666
/**
67-
* Schedules a command to wait for a condition to hold.
67+
* Schedules a command to wait for a condition to hold.
6868
*
6969
* This function may be used to block the command flow on the resolution
7070
* of a {@link webdriver.promise.Promise promise}. When given a promise, the
@@ -82,7 +82,7 @@ webdriver.WebDriver.prototype.actions = function() {};
8282
* var started = startTestServer();
8383
* browser.wait(started, 5 * 1000, 'Server should start within 5 seconds');
8484
* browser.get(getServerUrl());
85-
*
85+
*
8686
* @param {!(webdriver.promise.Promise<T>|
8787
* webdriver.until.Condition<T>|
8888
* function(!webdriver.WebDriver): T)} condition The condition to
@@ -380,8 +380,8 @@ webdriver.WebElement.prototype.getAttribute = function(attributeName) {};
380380

381381

382382
/**
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.
385385
*
386386
* @view
387387
* <div id="foo" class="bar">Inner text</div>

0 commit comments

Comments
 (0)