@@ -427,8 +427,8 @@ public HasValuesOptions setTimeout(double timeout) {
427427 */
428428 LocatorAssertions not ();
429429 /**
430- * Ensures that {@code Locator} points to an <a href="https://playwright.dev/java/docs/actionability#attached">attached</a>
431- * DOM node .
430+ * Ensures that {@code Locator} points to an element that is <a
431+ * href="https://developer.mozilla.org/en-US/docs/Web/API/Node/isConnected">connected</a> to a Document or a ShadowRoot .
432432 *
433433 * <p> **Usage**
434434 * <pre>{@code
@@ -441,8 +441,8 @@ default void isAttached() {
441441 isAttached (null );
442442 }
443443 /**
444- * Ensures that {@code Locator} points to an <a href="https://playwright.dev/java/docs/actionability#attached">attached</a>
445- * DOM node .
444+ * Ensures that {@code Locator} points to an element that is <a
445+ * href="https://developer.mozilla.org/en-US/docs/Web/API/Node/isConnected">connected</a> to a Document or a ShadowRoot .
446446 *
447447 * <p> **Usage**
448448 * <pre>{@code
@@ -671,8 +671,8 @@ default void isInViewport() {
671671 */
672672 void isInViewport (IsInViewportOptions options );
673673 /**
674- * Ensures that {@code Locator} points to an <a href="https://playwright.dev/java/docs/actionability# attached">attached</a>
675- * and <a href="https://playwright.dev/java/docs/actionability#visible">visible</a> DOM node.
674+ * Ensures that {@code Locator} points to an attached and <a
675+ * href="https://playwright.dev/java/docs/actionability#visible">visible</a> DOM node.
676676 *
677677 * <p> To check that at least one element from the list is visible, use {@link Locator#first Locator.first()}.
678678 *
@@ -698,8 +698,8 @@ default void isVisible() {
698698 isVisible (null );
699699 }
700700 /**
701- * Ensures that {@code Locator} points to an <a href="https://playwright.dev/java/docs/actionability# attached">attached</a>
702- * and <a href="https://playwright.dev/java/docs/actionability#visible">visible</a> DOM node.
701+ * Ensures that {@code Locator} points to an attached and <a
702+ * href="https://playwright.dev/java/docs/actionability#visible">visible</a> DOM node.
703703 *
704704 * <p> To check that at least one element from the list is visible, use {@link Locator#first Locator.first()}.
705705 *
@@ -723,8 +723,8 @@ default void isVisible() {
723723 */
724724 void isVisible (IsVisibleOptions options );
725725 /**
726- * Ensures the {@code Locator} points to an element that contains the given text. You can use regular expressions for the
727- * value as well.
726+ * Ensures the {@code Locator} points to an element that contains the given text. All nested elements will be considered
727+ * when computing the text content of the element. You can use regular expressions for the value as well.
728728 *
729729 * <p> **Details**
730730 *
@@ -768,8 +768,8 @@ default void containsText(String expected) {
768768 containsText (expected , null );
769769 }
770770 /**
771- * Ensures the {@code Locator} points to an element that contains the given text. You can use regular expressions for the
772- * value as well.
771+ * Ensures the {@code Locator} points to an element that contains the given text. All nested elements will be considered
772+ * when computing the text content of the element. You can use regular expressions for the value as well.
773773 *
774774 * <p> **Details**
775775 *
@@ -811,8 +811,8 @@ default void containsText(String expected) {
811811 */
812812 void containsText (String expected , ContainsTextOptions options );
813813 /**
814- * Ensures the {@code Locator} points to an element that contains the given text. You can use regular expressions for the
815- * value as well.
814+ * Ensures the {@code Locator} points to an element that contains the given text. All nested elements will be considered
815+ * when computing the text content of the element. You can use regular expressions for the value as well.
816816 *
817817 * <p> **Details**
818818 *
@@ -856,8 +856,8 @@ default void containsText(Pattern expected) {
856856 containsText (expected , null );
857857 }
858858 /**
859- * Ensures the {@code Locator} points to an element that contains the given text. You can use regular expressions for the
860- * value as well.
859+ * Ensures the {@code Locator} points to an element that contains the given text. All nested elements will be considered
860+ * when computing the text content of the element. You can use regular expressions for the value as well.
861861 *
862862 * <p> **Details**
863863 *
@@ -899,8 +899,8 @@ default void containsText(Pattern expected) {
899899 */
900900 void containsText (Pattern expected , ContainsTextOptions options );
901901 /**
902- * Ensures the {@code Locator} points to an element that contains the given text. You can use regular expressions for the
903- * value as well.
902+ * Ensures the {@code Locator} points to an element that contains the given text. All nested elements will be considered
903+ * when computing the text content of the element. You can use regular expressions for the value as well.
904904 *
905905 * <p> **Details**
906906 *
@@ -944,8 +944,8 @@ default void containsText(String[] expected) {
944944 containsText (expected , null );
945945 }
946946 /**
947- * Ensures the {@code Locator} points to an element that contains the given text. You can use regular expressions for the
948- * value as well.
947+ * Ensures the {@code Locator} points to an element that contains the given text. All nested elements will be considered
948+ * when computing the text content of the element. You can use regular expressions for the value as well.
949949 *
950950 * <p> **Details**
951951 *
@@ -987,8 +987,8 @@ default void containsText(String[] expected) {
987987 */
988988 void containsText (String [] expected , ContainsTextOptions options );
989989 /**
990- * Ensures the {@code Locator} points to an element that contains the given text. You can use regular expressions for the
991- * value as well.
990+ * Ensures the {@code Locator} points to an element that contains the given text. All nested elements will be considered
991+ * when computing the text content of the element. You can use regular expressions for the value as well.
992992 *
993993 * <p> **Details**
994994 *
@@ -1032,8 +1032,8 @@ default void containsText(Pattern[] expected) {
10321032 containsText (expected , null );
10331033 }
10341034 /**
1035- * Ensures the {@code Locator} points to an element that contains the given text. You can use regular expressions for the
1036- * value as well.
1035+ * Ensures the {@code Locator} points to an element that contains the given text. All nested elements will be considered
1036+ * when computing the text content of the element. You can use regular expressions for the value as well.
10371037 *
10381038 * <p> **Details**
10391039 *
@@ -1455,8 +1455,8 @@ default void hasJSProperty(String name, Object value) {
14551455 */
14561456 void hasJSProperty (String name , Object value , HasJSPropertyOptions options );
14571457 /**
1458- * Ensures the {@code Locator} points to an element with the given text. You can use regular expressions for the value as
1459- * well.
1458+ * Ensures the {@code Locator} points to an element with the given text. All nested elements will be considered when
1459+ * computing the text content of the element. You can use regular expressions for the value as well.
14601460 *
14611461 * <p> **Details**
14621462 *
@@ -1500,8 +1500,8 @@ default void hasText(String expected) {
15001500 hasText (expected , null );
15011501 }
15021502 /**
1503- * Ensures the {@code Locator} points to an element with the given text. You can use regular expressions for the value as
1504- * well.
1503+ * Ensures the {@code Locator} points to an element with the given text. All nested elements will be considered when
1504+ * computing the text content of the element. You can use regular expressions for the value as well.
15051505 *
15061506 * <p> **Details**
15071507 *
@@ -1543,8 +1543,8 @@ default void hasText(String expected) {
15431543 */
15441544 void hasText (String expected , HasTextOptions options );
15451545 /**
1546- * Ensures the {@code Locator} points to an element with the given text. You can use regular expressions for the value as
1547- * well.
1546+ * Ensures the {@code Locator} points to an element with the given text. All nested elements will be considered when
1547+ * computing the text content of the element. You can use regular expressions for the value as well.
15481548 *
15491549 * <p> **Details**
15501550 *
@@ -1588,8 +1588,8 @@ default void hasText(Pattern expected) {
15881588 hasText (expected , null );
15891589 }
15901590 /**
1591- * Ensures the {@code Locator} points to an element with the given text. You can use regular expressions for the value as
1592- * well.
1591+ * Ensures the {@code Locator} points to an element with the given text. All nested elements will be considered when
1592+ * computing the text content of the element. You can use regular expressions for the value as well.
15931593 *
15941594 * <p> **Details**
15951595 *
@@ -1631,8 +1631,8 @@ default void hasText(Pattern expected) {
16311631 */
16321632 void hasText (Pattern expected , HasTextOptions options );
16331633 /**
1634- * Ensures the {@code Locator} points to an element with the given text. You can use regular expressions for the value as
1635- * well.
1634+ * Ensures the {@code Locator} points to an element with the given text. All nested elements will be considered when
1635+ * computing the text content of the element. You can use regular expressions for the value as well.
16361636 *
16371637 * <p> **Details**
16381638 *
@@ -1676,8 +1676,8 @@ default void hasText(String[] expected) {
16761676 hasText (expected , null );
16771677 }
16781678 /**
1679- * Ensures the {@code Locator} points to an element with the given text. You can use regular expressions for the value as
1680- * well.
1679+ * Ensures the {@code Locator} points to an element with the given text. All nested elements will be considered when
1680+ * computing the text content of the element. You can use regular expressions for the value as well.
16811681 *
16821682 * <p> **Details**
16831683 *
@@ -1719,8 +1719,8 @@ default void hasText(String[] expected) {
17191719 */
17201720 void hasText (String [] expected , HasTextOptions options );
17211721 /**
1722- * Ensures the {@code Locator} points to an element with the given text. You can use regular expressions for the value as
1723- * well.
1722+ * Ensures the {@code Locator} points to an element with the given text. All nested elements will be considered when
1723+ * computing the text content of the element. You can use regular expressions for the value as well.
17241724 *
17251725 * <p> **Details**
17261726 *
@@ -1764,8 +1764,8 @@ default void hasText(Pattern[] expected) {
17641764 hasText (expected , null );
17651765 }
17661766 /**
1767- * Ensures the {@code Locator} points to an element with the given text. You can use regular expressions for the value as
1768- * well.
1767+ * Ensures the {@code Locator} points to an element with the given text. All nested elements will be considered when
1768+ * computing the text content of the element. You can use regular expressions for the value as well.
17691769 *
17701770 * <p> **Details**
17711771 *
0 commit comments