From 211f93d3e496561ea8dba174f9900c64e21cc95b Mon Sep 17 00:00:00 2001 From: automatealchemist Date: Sat, 22 Feb 2025 08:55:20 +0530 Subject: [PATCH] Translated Driver Session page and other content into Portuguese --- .../documentation/about/copyright.pt-br.md | 3 +- .../documentation/about/style.pt-br.md | 6 ++-- .../documentation/selenium_manager.pt-br.md | 6 ++-- .../webdriver/drivers/_index.pt-br.md | 34 ++++++++----------- .../webdriver/drivers/http_client.pt-br.md | 2 +- .../drivers/remote_webdriver.pt-br.md | 2 +- .../webdriver/drivers/service.pt-br.md | 2 +- 7 files changed, 25 insertions(+), 30 deletions(-) diff --git a/website_and_docs/content/documentation/about/copyright.pt-br.md b/website_and_docs/content/documentation/about/copyright.pt-br.md index feba8e686983..d50d38fdb7e0 100644 --- a/website_and_docs/content/documentation/about/copyright.pt-br.md +++ b/website_and_docs/content/documentation/about/copyright.pt-br.md @@ -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" diff --git a/website_and_docs/content/documentation/about/style.pt-br.md b/website_and_docs/content/documentation/about/style.pt-br.md index ee83f5607454..dfd2e238fbaf 100644 --- a/website_and_docs/content/documentation/about/style.pt-br.md +++ b/website_and_docs/content/documentation/about/style.pt-br.md @@ -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 diff --git a/website_and_docs/content/documentation/selenium_manager.pt-br.md b/website_and_docs/content/documentation/selenium_manager.pt-br.md index f52274f03364..b3228c97bbe0 100644 --- a/website_and_docs/content/documentation/selenium_manager.pt-br.md +++ b/website_and_docs/content/documentation/selenium_manager.pt-br.md @@ -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 diff --git a/website_and_docs/content/documentation/webdriver/drivers/_index.pt-br.md b/website_and_docs/content/documentation/webdriver/drivers/_index.pt-br.md index e5e3beae0541..76e149264b40 100644 --- a/website_and_docs/content/documentation/webdriver/drivers/_index.pt-br.md +++ b/website_and_docs/content/documentation/webdriver/drivers/_index.pt-br.md @@ -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" >}} @@ -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" >}} diff --git a/website_and_docs/content/documentation/webdriver/drivers/http_client.pt-br.md b/website_and_docs/content/documentation/webdriver/drivers/http_client.pt-br.md index 4f537b6270ef..b61eedbc96a3 100644 --- a/website_and_docs/content/documentation/webdriver/drivers/http_client.pt-br.md +++ b/website_and_docs/content/documentation/webdriver/drivers/http_client.pt-br.md @@ -1,5 +1,5 @@ --- -title: "HTTP Client Configuration" +title: "Configuração do Cliente HTTP" linkTitle: "HTTP Client" weight: 3 --- diff --git a/website_and_docs/content/documentation/webdriver/drivers/remote_webdriver.pt-br.md b/website_and_docs/content/documentation/webdriver/drivers/remote_webdriver.pt-br.md index f3133687dac5..07a0f5783200 100644 --- a/website_and_docs/content/documentation/webdriver/drivers/remote_webdriver.pt-br.md +++ b/website_and_docs/content/documentation/webdriver/drivers/remote_webdriver.pt-br.md @@ -1,5 +1,5 @@ --- -title: "Remote WebDriver" +title: "WebDriver Remoto" linkTitle: "Remote WebDriver" weight: 10 aliases: [ diff --git a/website_and_docs/content/documentation/webdriver/drivers/service.pt-br.md b/website_and_docs/content/documentation/webdriver/drivers/service.pt-br.md index 0d5844d709a4..9f2c7bee337c 100644 --- a/website_and_docs/content/documentation/webdriver/drivers/service.pt-br.md +++ b/website_and_docs/content/documentation/webdriver/drivers/service.pt-br.md @@ -1,5 +1,5 @@ --- -title: "Driver Service Class" +title: "Classe de Serviço do Driver" linkTitle: "Service" weight: 3 ---