Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translated Driver Session page and other content into Portuguese #2189

Open
wants to merge 2 commits into
base: trunk
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ title: "Direitos autorais e atribuições"
linkTitle: "Direitos autorais e atribuições"
weight: 1
description: >
Copyright, contributions and all attributions for the different projects
under the Selenium umbrella.
Direitos autorais, contribuições e todas as atribuições para os diferentes projetos sob a iniciativa do Selenium.
aliases: [
"/documentation/pt-br/front_matter/copyright_and_attributions/",
"/pt-br/documentation/about/copyright_and_attributions"
Expand Down
6 changes: 3 additions & 3 deletions website_and_docs/content/documentation/about/style.pt-br.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
title: "Style guide for Selenium documentation"
linkTitle: "Style"
title: "Guia de estilo para a documentação do Selenium"
linkTitle: "Estilo"
weight: 6
description: >-
Conventions for contributions to the Selenium documentation and code examples
Convenções para contribuições à documentação do Selenium e exemplos de código.
---

Read our [contributing documentation]({{< ref contributing.md >}}) for complete instructions on
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
title: "Selenium Manager (Beta)"
linkTitle: "Selenium Manager"
title: "Gerenciador do Selenium (Beta)"
linkTitle: "Gerenciador do Selenium"
weight: 3
description: >
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.
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.
---

## Motivation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,31 +1,29 @@
---
title: "Driver Sessions"
title: "Sessões de Driver"
linkTitle: "Drivers"
weight: 3
---

Starting and stopping a session is for opening and closing a browser.
Iniciar e encerrar uma sessão serve para abrir e fechar um navegador.

## Creating Sessions
## Criando Sessões

Creating a new session corresponds with the W3C command for [New session](https://w3c.github.io/webdriver/#new-session)
Criar uma nova sessão corresponde ao comando W3C para [Nova sessão](https://w3c.github.io/webdriver/#new-session)

The session is created automatically by initializing a new Driver class object.
A sessão é criada automaticamente ao inicializar um novo objeto da classe Driver.

Each language allows a session to be created with arguments from one of these classes (or equivalent):
Cada linguagem permite que uma sessão seja criada com argumentos de uma dessas classes (ou equivalentes):

* [Options]({{< ref "options.md" >}}) to describe the kind of session you want; default values are used for local, but
this is required for remote
* Some form of [Http Client Configuration]({{< ref "http_client.md" >}}) (the implementation varies between languages)
* [Listeners]({{< ref "listeners.md" >}})
* Alguma forma de [configuração do cliente HTTP]({{< ref "http_client.md" >}}) (a implementação varia entre as linguagens)
* [Ouvintes]({{< ref "listeners.md" >}})

### Local Driver

The primary unique argument for starting a local driver includes information about starting the required driver service
on the local machine.
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.

* [Service]({{< ref "service.md" >}}) object applies only to local drivers and provides information about the browser
driver
* Objeto de [Serviço]({{< ref "service.md" >}}) se aplica apenas a drivers locais e fornece informações sobre o driver do navegador.

{{< tabpane text=true >}}
{{< tab header="Java" >}}
Expand All @@ -48,17 +46,15 @@ on the local machine.
{{< /tab >}}
{{< /tabpane >}}

### Remote Driver
### Driver Remoto

The primary unique argument for starting a remote driver includes information about where to execute the code.
Read the details in the [Remote Driver Section]({{< ref "remote_webdriver.md" >}})
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" >}})

## Quitting Sessions
## Encerrando Sessões

Quitting a session corresponds to W3C command for [Deleting a Session](https://w3c.github.io/webdriver/#delete-session).
Encerrar uma sessão corresponde ao comando W3C para [Excluir uma Sessão](https://w3c.github.io/webdriver/#delete-session).

Important note: the `quit` method is different from the `close` method,
and it is recommended to always use `quit` to end the session
Nota importante: o método `quit` é diferente do método `close`, e é recomendável sempre usar `quit` para finalizar a sessão.

{{< tabpane text=true >}}
{{< tab header="Java" >}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "HTTP Client Configuration"
title: "Configuração do Cliente HTTP"
linkTitle: "HTTP Client"
weight: 3
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Remote WebDriver"
title: "WebDriver Remoto"
linkTitle: "Remote WebDriver"
weight: 10
aliases: [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Driver Service Class"
title: "Classe de Serviço do Driver"
linkTitle: "Service"
weight: 3
---
Expand Down