From 2d5819f331b952eca975b9443df8ed6cbdf3e944 Mon Sep 17 00:00:00 2001 From: Pedro de Oliveira Guedes Date: Thu, 6 Jan 2022 12:45:52 -0300 Subject: [PATCH] Removing standard values for some methods. --- api/chrome/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.