You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website_and_docs/content/documentation/selenium_manager.pt-br.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
---
2
-
title: "Selenium Manager (Beta)"
3
-
linkTitle: "Selenium Manager"
2
+
title: "Gerenciador do Selenium (Beta)"
3
+
linkTitle: "Gerenciador do Selenium"
4
4
weight: 3
5
5
description: >
6
-
Selenium Manager is a command-line tool implemented in Rust that provides automated driver and browser management for Selenium. Selenium bindings use this tool by default, so you do not need to download it or add anything to your code or do anything else to use it.
6
+
O Selenium Manager é uma ferramenta de linha de comando implementada em Rust que fornece gerenciamento automatizado de drivers e navegadores para o Selenium. As bibliotecas do Selenium usam essa ferramenta por padrão, portanto, você não precisa baixá-la, adicionar nada ao seu código ou realizar qualquer outra ação para utilizá-la.
Copy file name to clipboardExpand all lines: website_and_docs/content/documentation/webdriver/drivers/_index.pt-br.md
+15-19
Original file line number
Diff line number
Diff line change
@@ -1,31 +1,29 @@
1
1
---
2
-
title: "Driver Sessions"
2
+
title: "Sessões de Driver"
3
3
linkTitle: "Drivers"
4
4
weight: 3
5
5
---
6
6
7
-
Starting and stopping a session is for opening and closing a browser.
7
+
Iniciar e encerrar uma sessão serve para abrir e fechar um navegador.
8
8
9
-
## Creating Sessions
9
+
## Criando Sessões
10
10
11
-
Creating a new session corresponds with the W3C command for [New session](https://w3c.github.io/webdriver/#new-session)
11
+
Criar uma nova sessão corresponde ao comando W3C para [Nova sessão](https://w3c.github.io/webdriver/#new-session)
12
12
13
-
The session is created automatically by initializing a new Driver class object.
13
+
A sessão é criada automaticamente ao inicializar um novo objeto da classe Driver.
14
14
15
-
Each language allows a session to be created with arguments from one of these classes (or equivalent):
15
+
Cada linguagem permite que uma sessão seja criada com argumentos de uma dessas classes (ou equivalentes):
16
16
17
17
*[Options]({{< ref "options.md" >}}) to describe the kind of session you want; default values are used for local, but
18
18
this is required for remote
19
-
*Some form of [Http Client Configuration]({{< ref "http_client.md" >}}) (the implementation varies between languages)
20
-
*[Listeners]({{< ref "listeners.md" >}})
19
+
*Alguma forma de [configuração do cliente HTTP]({{< ref "http_client.md" >}}) (a implementação varia entre as linguagens)
20
+
*[Ouvintes]({{< ref "listeners.md" >}})
21
21
22
22
### Local Driver
23
23
24
-
The primary unique argument for starting a local driver includes information about starting the required driver service
25
-
on the local machine.
24
+
O principal argumento exclusivo para iniciar um driver local inclui informações sobre a inicialização do serviço de driver necessário na máquina local.
26
25
27
-
*[Service]({{< ref "service.md" >}}) object applies only to local drivers and provides information about the browser
28
-
driver
26
+
* Objeto de [Serviço]({{< ref "service.md" >}}) se aplica apenas a drivers locais e fornece informações sobre o driver do navegador.
29
27
30
28
{{< tabpane text=true >}}
31
29
{{< tab header="Java" >}}
@@ -48,17 +46,15 @@ on the local machine.
48
46
{{< /tab >}}
49
47
{{< /tabpane >}}
50
48
51
-
### Remote Driver
49
+
### Driver Remoto
52
50
53
-
The primary unique argument for starting a remote driver includes information about where to execute the code.
54
-
Read the details in the [Remote Driver Section]({{< ref "remote_webdriver.md" >}})
51
+
O principal argumento exclusivo para iniciar um driver remoto inclui informações sobre onde executar o código. Leia os detalhes na [seção Driver Remoto]({{< ref "remote_webdriver.md" >}})
55
52
56
-
## Quitting Sessions
53
+
## Encerrando Sessões
57
54
58
-
Quitting a session corresponds to W3C command for [Deleting a Session](https://w3c.github.io/webdriver/#delete-session).
55
+
Encerrar uma sessão corresponde ao comando W3C para [Excluir uma Sessão](https://w3c.github.io/webdriver/#delete-session).
59
56
60
-
Important note: the `quit` method is different from the `close` method,
61
-
and it is recommended to always use `quit` to end the session
57
+
Nota importante: o método `quit` é diferente do método `close`, e é recomendável sempre usar `quit` para finalizar a sessão.
0 commit comments