Removing standard values for some methods.
parent
95052905c5
commit
2d5819f331
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue