Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit 786a4eb

Browse files
author
schrm01
committed
Formatting fix
1 parent 9e2f4f0 commit 786a4eb

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/github/markusbernhardt/seleniumlibrary/keywords

1 file changed

+1
-1
lines changed

src/main/java/com/github/markusbernhardt/seleniumlibrary/keywords/Element.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ public String getElementAttribute(String locator) {
435435
"Passing attribute name as part of the locator was removed in SeleniumLibrary 3.2. The explicit attribute argument should be used instead.")
436436
@ArgumentNames({ "locator", "attribute=None" })
437437
public String getElementAttribute(String locator, String... attribute) {
438-
String attributeName= robot.getParamsValue(attribute, 0, "None");
438+
String attributeName = robot.getParamsValue(attribute, 0, "None");
439439
List<WebElement> elements = elementFind(locator, true, false);
440440

441441
if (elements.size() == 0) {

0 commit comments

Comments
 (0)