You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 2, 2025. It is now read-only.
@@ -327,10 +326,10 @@ public void elementShouldBeVisible(String locator, String...params) {
327
326
}
328
327
}
329
328
330
-
@RobotKeyword("Verify the element identified by ``locator`` is not visible.\r\n" +
331
-
"\r\n" +
332
-
"Herein, visible means that the element is logically visible, not optically visible in the current browser viewport. For example, an element that carries display:none is not logically visible, so using this keyword on that element would fail.\r\n" +
333
-
"\r\n" +
329
+
@RobotKeyword("Verify the element identified by ``locator`` is not visible.\r\n" +
330
+
"\r\n" +
331
+
"Herein, visible means that the element is logically visible, not optically visible in the current browser viewport. For example, an element that carries display:none is not logically visible, so using this keyword on that element would fail.\r\n" +
332
+
"\r\n" +
334
333
"Key attributes for arbitrary elements are id and name. See `Introduction` for details about locators.")
@RobotKeyword("Verify the text of the element identified by ``locator`` is not exactly ``text``.\r\n" +
404
-
"\r\n" +
405
-
"In contrast to `Element Should Not Contain`, this keyword does not try a substring match but an exact match on the element identified by locator.\r\n" +
406
-
"\r\n" +
402
+
@RobotKeyword("Verify the text of the element identified by ``locator`` is not exactly ``text``.\r\n" +
403
+
"\r\n" +
404
+
"In contrast to `Element Should Not Contain`, this keyword does not try a substring match but an exact match on the element identified by locator.\r\n" +
405
+
"\r\n" +
407
406
"Key attributes for arbitrary elements are id and name. See `Introduction` for details about locators.")
@RobotKeyword("Returns the text of the element identified by ``locator``..\r\n" +
533
-
"\r\n" +
531
+
@RobotKeyword("Returns the text of the element identified by ``locator``..\r\n" +
532
+
"\r\n" +
534
533
"Key attributes for arbitrary elements are id and name. See `Introduction` for details about locators.")
535
534
@ArgumentNames({ "locator" })
536
535
publicStringgetText(Stringlocator) {
@@ -543,10 +542,10 @@ public String getText(String locator) {
543
542
returnelements.get(0).getText();
544
543
}
545
544
546
-
@RobotKeyword("Returns vertical position of element identified by ``locator``.\r\n" +
547
-
"\r\n" +
548
-
"The position is returned in pixels off the left side of the page, as an integer. Fails if the matching element is not found.\r\n" +
549
-
"\r\n" +
545
+
@RobotKeyword("Returns vertical position of element identified by ``locator``.\r\n" +
546
+
"\r\n" +
547
+
"The position is returned in pixels off the left side of the page, as an integer. Fails if the matching element is not found.\r\n" +
548
+
"\r\n" +
550
549
"Key attributes for arbitrary elements are id and name. See `Introduction` for details about locators.")
551
550
@ArgumentNames({ "locator" })
552
551
publicintgetVerticalPosition(Stringlocator) {
@@ -564,8 +563,8 @@ public int getVerticalPosition(String locator) {
564
563
// Keywords - Mouse Input/Events
565
564
// ##############################
566
565
567
-
@RobotKeyword("Click on the element identified by ``locator``.\r\n" +
568
-
"\r\n" +
566
+
@RobotKeyword("Click on the element identified by ``locator``.\r\n" +
567
+
"\r\n" +
569
568
"Key attributes for arbitrary elements are id and name. See `Introduction` for details about locators.")
570
569
@ArgumentNames({ "locator" })
571
570
publicvoidclickElement(Stringlocator) {
@@ -575,10 +574,10 @@ public void clickElement(String locator) {
575
574
elements.get(0).click();
576
575
}
577
576
578
-
@RobotKeyword("Click on the element identified by locator at the coordinates ``xOffset`` and ``yOffset``.\r\n" +
579
-
"\r\n" +
580
-
"The cursor is moved at the center of the element and the to the given x/y offset from that point. Both offsets are specified as negative (left/up) or positive (right/down) number.\r\n" +
581
-
"\r\n" +
577
+
@RobotKeyword("Click on the element identified by locator at the coordinates ``xOffset`` and ``yOffset``.\r\n" +
578
+
"\r\n" +
579
+
"The cursor is moved at the center of the element and the to the given x/y offset from that point. Both offsets are specified as negative (left/up) or positive (right/down) number.\r\n" +
580
+
"\r\n" +
582
581
"Key attributes for arbitrary elements are id and name. See `Introduction` for details about locators.")
0 commit comments