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.
@@ -326,10 +326,10 @@ public void elementShouldBeVisible(String locator, String...params) {
326
326
}
327
327
}
328
328
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" +
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" +
333
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" +
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" +
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" +
406
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" +
532
-
"\r\n" +
531
+
@RobotKeyword("Returns the text of the element identified by ``locator``..\r\n" +
532
+
"\r\n" +
533
533
"Key attributes for arbitrary elements are id and name. See `Introduction` for details about locators.")
534
534
@ArgumentNames({ "locator" })
535
535
publicStringgetText(Stringlocator) {
@@ -542,10 +542,10 @@ public String getText(String locator) {
542
542
returnelements.get(0).getText();
543
543
}
544
544
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" +
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" +
549
549
"Key attributes for arbitrary elements are id and name. See `Introduction` for details about locators.")
550
550
@ArgumentNames({ "locator" })
551
551
publicintgetVerticalPosition(Stringlocator) {
@@ -563,8 +563,8 @@ public int getVerticalPosition(String locator) {
563
563
// Keywords - Mouse Input/Events
564
564
// ##############################
565
565
566
-
@RobotKeyword("Click on the element identified by ``locator``.\r\n" +
567
-
"\r\n" +
566
+
@RobotKeyword("Click on the element identified by ``locator``.\r\n" +
567
+
"\r\n" +
568
568
"Key attributes for arbitrary elements are id and name. See `Introduction` for details about locators.")
569
569
@ArgumentNames({ "locator" })
570
570
publicvoidclickElement(Stringlocator) {
@@ -574,10 +574,10 @@ public void clickElement(String locator) {
574
574
elements.get(0).click();
575
575
}
576
576
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" +
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" +
581
581
"Key attributes for arbitrary elements are id and name. See `Introduction` for details about locators.")
0 commit comments