Skip to content

Commit

Permalink
Generate stub file for 6.2.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
emanlove committed Nov 19, 2023
1 parent 7469076 commit 5874349
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/SeleniumLibrary/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class SeleniumLibrary:
def close_browser(self): ...
def close_window(self): ...
def cover_element(self, locator: Union[selenium.webdriver.remote.webelement.WebElement, str]): ...
def create_webdriver(self, driver_name: str, alias: Optional[Optional[str]] = None, kwargs = {}, **init_kwargs): ...
def create_webdriver(self, driver_name: str, alias: Optional[Optional[str]] = None, kwargs: Optional[Optional[dict]] = None, **init_kwargs): ...
def current_frame_should_contain(self, text: str, loglevel: str = 'TRACE'): ...
def current_frame_should_not_contain(self, text: str, loglevel: str = 'TRACE'): ...
def delete_all_cookies(self): ...
Expand All @@ -45,8 +45,8 @@ class SeleniumLibrary:
def element_should_not_contain(self, locator: Union[selenium.webdriver.remote.webelement.WebElement, str], expected: Optional[str], message: Optional[Optional[str]] = None, ignore_case: bool = False): ...
def element_text_should_be(self, locator: Union[selenium.webdriver.remote.webelement.WebElement, str], expected: Optional[str], message: Optional[Optional[str]] = None, ignore_case: bool = False): ...
def element_text_should_not_be(self, locator: Union[selenium.webdriver.remote.webelement.WebElement, str], not_expected: Optional[str], message: Optional[Optional[str]] = None, ignore_case: bool = False): ...
def execute_async_javascript(self, *code: Union[selenium.webdriver.remote.webelement.WebElement, str]): ...
def execute_javascript(self, *code: Union[selenium.webdriver.remote.webelement.WebElement, str]): ...
def execute_async_javascript(self, *code: Any): ...
def execute_javascript(self, *code: Any): ...
def frame_should_contain(self, locator: Union[selenium.webdriver.remote.webelement.WebElement, str], text: str, loglevel: str = 'TRACE'): ...
def get_action_chain_delay(self): ...
def get_all_links(self): ...
Expand Down

0 comments on commit 5874349

Please sign in to comment.