diff --git a/api/chrome/cli.py b/api/chrome/cli.py index 9486db1..69e278e 100644 --- a/api/chrome/cli.py +++ b/api/chrome/cli.py @@ -179,7 +179,7 @@ class Chrome: """ return self.__request_get__("/ipc/chrome/stop") - def new (self, url: str = "https://www.google.com/"): + def new (self, url: str): """ ## Chrome New Abre uma nova aba na instância do Google Chrome inicializada pelo client. @@ -306,7 +306,7 @@ class Chrome: # url = urllib.parse.quote(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 Este método procura entre as abas abertas no Google Chrome, uma que possua o título correspondente ao que foi dado.