Skip to content

Instantly share code, notes, and snippets.

@angiejones
Created January 29, 2021 06:49
Show Gist options
  • Save angiejones/53fb0225c8ed0f8433b6793c5923dc60 to your computer and use it in GitHub Desktop.
Save angiejones/53fb0225c8ed0f8433b6793c5923dc60 to your computer and use it in GitHub Desktop.
Playwright - get text from element
public List<String> getVisibleBooks(){
return page.querySelectorAll(locator_visibleBookTitles)
.stream()
.map(e -> e.innerText())
.collect(Collectors.toList());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment