Removing standard values for some methods.

anticaptcha
Pedro de Oliveira Guedes 2022-01-06 12:45:52 -03:00
parent 95052905c5
commit 2d5819f331
1 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ class Chrome:
""" """
return self.__request_get__("/ipc/chrome/stop") return self.__request_get__("/ipc/chrome/stop")
def new (self, url: str = "https://www.google.com/"): def new (self, url: str):
""" """
## Chrome New ## Chrome New
Abre uma nova aba na instância do Google Chrome inicializada pelo client. Abre uma nova aba na instância do Google Chrome inicializada pelo client.
@ -306,7 +306,7 @@ class Chrome:
# url = urllib.parse.quote(url, "") # url = urllib.parse.quote(url, "")
# return self.__request_get__("/ipc/chrome/findtabbyurl/"+url) # return self.__request_get__("/ipc/chrome/findtabbyurl/"+url)
def find_tab_by_title (self, title: str = "Google"): def find_tab_by_title (self, title: str):
""" """
## Chrome Find Tab By Title ## Chrome Find Tab By Title
Este método procura entre as abas abertas no Google Chrome, uma que possua o título correspondente ao que foi dado. Este método procura entre as abas abertas no Google Chrome, uma que possua o título correspondente ao que foi dado.