Skip to content

Commit

Permalink
fix enums
Browse files Browse the repository at this point in the history
  • Loading branch information
VladSenyuta committed Apr 15, 2024
1 parent 4fdffaf commit 943712e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private List<SelenideElement> getVisibleSummaryCells() {

private List<SelenideElement> getDetailsTabs() {
return Stream.of(DetailsTab.values())
.map(name -> $x(String.format(brokersTabLocator, name)))
.map(tab -> $x(String.format(brokersTabLocator, tab.getValue())))
.collect(Collectors.toList());
}

Expand Down

0 comments on commit 943712e

Please sign in to comment.