Skip to content

Commit 9f345b1

Browse files
committed
Add a method description.
1 parent 25378fb commit 9f345b1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

seleniumbase/fixtures/base_case.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,7 @@ def is_text_visible(self, text, selector, by=By.CSS_SELECTOR):
494494
return page_actions.is_text_visible(self.driver, text, selector, by)
495495

496496
def find_visible_elements(self, selector, by=By.CSS_SELECTOR):
497+
""" Returns a list of matching WebElements that are visible. """
497498
if page_utils.is_xpath_selector(selector):
498499
by = By.XPATH
499500
return page_actions.find_visible_elements(self.driver, selector, by)

0 commit comments

Comments
 (0)