diff --git a/seleniumbase/fixtures/base_case.py b/seleniumbase/fixtures/base_case.py index f7e9db11..ba75d3d9 100755 --- a/seleniumbase/fixtures/base_case.py +++ b/seleniumbase/fixtures/base_case.py @@ -1896,39 +1896,6 @@ class BaseCase(unittest.TestCase): dropdown_by=dropdown_by, option_by="value", timeout=timeout) - @decorators.deprecated("Use self.select_option_by_text() instead!") - def pick_select_option_by_text(self, dropdown_selector, option, - dropdown_by=By.CSS_SELECTOR, - timeout=settings.SMALL_TIMEOUT): - """ Selects an HTML option by option index. """ - if self.timeout_multiplier and timeout == settings.SMALL_TIMEOUT: - timeout = self.__get_new_timeout(timeout) - self.__select_option(dropdown_selector, option, - dropdown_by=dropdown_by, option_by="index", - timeout=timeout) - - @decorators.deprecated("Use self.select_option_by_value() instead!") - def pick_select_option_by_value(self, dropdown_selector, option, - dropdown_by=By.CSS_SELECTOR, - timeout=settings.SMALL_TIMEOUT): - """ Selects an HTML