Skip to content

Commit

Permalink
[java] Implement getDomAttribute method in EventFiringWebDriver (#9394)
Browse files Browse the repository at this point in the history
  • Loading branch information
pujagani authored Apr 21, 2021
1 parent 8cabfbf commit f67095a
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,11 @@ public String getAttribute(String name) {
return element.getAttribute(name);
}

@Override
public String getDomAttribute(String name) {
return element.getDomAttribute(name);
}

@Override
public boolean isSelected() {
return element.isSelected();
Expand Down

0 comments on commit f67095a

Please sign in to comment.