From e8c16497be2ab1f19984266cbaea4732456dcb2e Mon Sep 17 00:00:00 2001 From: vs-sap <161034139+vs-sap@users.noreply.github.com> Date: Mon, 29 Jul 2024 14:03:07 +0100 Subject: [PATCH] Remove unneeded 'send_' in docs --- src/SeleniumLibrary/keywords/element.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/SeleniumLibrary/keywords/element.py b/src/SeleniumLibrary/keywords/element.py index 131fadbf9..831ebfaf2 100644 --- a/src/SeleniumLibrary/keywords/element.py +++ b/src/SeleniumLibrary/keywords/element.py @@ -923,7 +923,6 @@ def press_key(self, locator: Union[WebElement, str], key: str): using the selenium send_keys method. Although one is not recommended over the other if `Press Key` does not work we recommend trying `Press Keys`. - send_ """ if key.startswith("\\") and len(key) > 1: key = self._map_ascii_key_code_to_key(int(key[1:]))