@@ -691,7 +691,7 @@ public String toString() {
691691 * Wait until an element is no longer attached to the DOM.
692692 *
693693 * @param element The element to wait for.
694- * @return false is the element is still attached to the DOM, true otherwise.
694+ * @return false if the element is still attached to the DOM, true otherwise.
695695 */
696696 public static ExpectedCondition <Boolean > stalenessOf (final WebElement element ) {
697697 return new ExpectedCondition <Boolean >() {
@@ -847,7 +847,7 @@ public String toString() {
847847 /**
848848 * An expectation with the logical opposite condition of the given condition.
849849 *
850- * Note that if the Condition your are inverting throws an exception that is caught by the Ignored
850+ * Note that if the Condition you are inverting throws an exception that is caught by the Ignored
851851 * Exceptions, the inversion will not take place and lead to confusing results.
852852 *
853853 * @param condition ExpectedCondition to be inverted
@@ -999,7 +999,7 @@ public String toString() {
999999 * An expectation for checking number of WebElements with given locator
10001000 *
10011001 * @param locator used to find the element
1002- * @param number user to define exact number of elements
1002+ * @param number used to define exact number of elements
10031003 * @return Boolean true when size of elements list is equal to defined
10041004 */
10051005 public static ExpectedCondition <List <WebElement >> numberOfElementsToBeMoreThan (final By locator ,
@@ -1027,7 +1027,7 @@ public String toString() {
10271027 * number
10281028 *
10291029 * @param locator used to find the element
1030- * @param number user to define maximum number of elements
1030+ * @param number used to define maximum number of elements
10311031 * @return Boolean true when size of elements list is less than defined
10321032 */
10331033 public static ExpectedCondition <List <WebElement >> numberOfElementsToBeLessThan (final By locator ,
@@ -1054,7 +1054,7 @@ public String toString() {
10541054 * An expectation for checking number of WebElements with given locator
10551055 *
10561056 * @param locator used to find the element
1057- * @param number user to define number of elements
1057+ * @param number used to define number of elements
10581058 * @return Boolean true when size of elements list is equal to defined
10591059 */
10601060 public static ExpectedCondition <List <WebElement >> numberOfElementsToBe (final By locator ,
@@ -1080,7 +1080,7 @@ public String toString() {
10801080 /**
10811081 * An expectation for checking given WebElement has attribute with a specific value
10821082 *
1083- * @param element used to check it's parameters
1083+ * @param element used to check its parameters
10841084 * @param attribute used to define css or html attribute
10851085 * @param value used as expected attribute value
10861086 * @return Boolean true when element has css or html attribute with the value
@@ -1112,7 +1112,7 @@ public String toString() {
11121112 * An expectation for checking WebElement with given locator has attribute which contains specific
11131113 * value
11141114 *
1115- * @param element used to check it's parameters
1115+ * @param element used to check its parameters
11161116 * @param attribute used to define css or html attribute
11171117 * @param value used as expected attribute value
11181118 * @return Boolean true when element has css or html attribute which contains the value
@@ -1141,7 +1141,7 @@ public String toString() {
11411141 * An expectation for checking WebElement with given locator has attribute which contains specific
11421142 * value
11431143 *
1144- * @param locator used to define WebElement to check it's parameters
1144+ * @param locator used to define WebElement to check its parameters
11451145 * @param attribute used to define css or html attribute
11461146 * @param value used as expected attribute value
11471147 * @return Boolean true when element has css or html attribute which contains the value
@@ -1169,7 +1169,7 @@ public String toString() {
11691169 /**
11701170 * An expectation for checking WebElement any non empty value for given attribute
11711171 *
1172- * @param element used to check it's parameters
1172+ * @param element used to check its parameters
11731173 * @param attribute used to define css or html attribute
11741174 * @return Boolean true when element has css or html attribute with non empty value
11751175 */
0 commit comments