File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
py/selenium/webdriver/remote Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -639,8 +639,8 @@ def get_cookies(self) -> List[dict]:
639639 return self .execute (Command .GET_ALL_COOKIES )["value" ]
640640
641641 def get_cookie (self , name ) -> Optional [Dict ]:
642- """Get a single cookie by name. Raises ValueError if the name is empty or whitespace.
643- Returns the cookie if found, None if not.
642+ """Get a single cookie by name. Raises ValueError if the name is empty
643+ or whitespace. Returns the cookie if found, None if not.
644644
645645 :Usage:
646646 ::
@@ -659,7 +659,8 @@ def get_cookie(self, name) -> Optional[Dict]:
659659 return None
660660
661661 def delete_cookie (self , name ) -> None :
662- """Deletes a single cookie with the given name. Raises ValueError if the name is empty or whitespace.
662+ """Deletes a single cookie with the given name. Raises ValueError if
663+ the name is empty or whitespace.
663664
664665 :Usage:
665666 ::
You can’t perform that action at this time.
0 commit comments