Skip to content

Commit a6cf14d

Browse files
authored
Finished translating bidi_api.pt-br.md to Brazilian Portuguese (#1053)[deploy site]
* Finished translating bidi_api.pt-br.md to Brazilian Portuguese Finished translating the entire page located at website_and_docs/content/documentation/webdriver/bidirectional/bidi_api.pt-br.md to Brazilian Portuguese. * Removed translation needed warning on bidi_api.pt-br.md Removed translatio needed warning located on the file website_and_docs\content\documentation\webdriver\bidirectional\bidi_api.pt-br.md
1 parent 6bf44a8 commit a6cf14d

File tree

1 file changed

+21
-36
lines changed

1 file changed

+21
-36
lines changed

website_and_docs/content/documentation/webdriver/bidirectional/bidi_api.pt-br.md

Lines changed: 21 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,15 @@
11
---
2-
title: "BiDirectional API"
2+
title: "API BiDirecional"
33
linkTitle: "BiDi API"
44
weight: 12
55
---
66

7-
{{% pageinfo color="warning" %}}
8-
<p class="lead">
9-
<i class="fas fa-language display-4"></i>
10-
Page being translated from
11-
English to Portuguese. Do you speak Portuguese? Help us to translate
12-
it by sending us pull requests!
13-
</p>
14-
{{% /pageinfo %}}
7+
A seguinte lista de APIs crescerá à medida que o projeto Selenium se prepara
8+
para suportar casos de uso do mundo real. Se houver funcionalidades adicionais que você gostaria de ver, por favor, levante uma [solicitação de recurso](https://github.com/SeleniumHQ/selenium/issues/new?assignees=&labels=&template=feature.md).
159

16-
The following list of APIs will be growing as the Selenium
17-
project works through supporting real world use cases. If there
18-
is additional functionality you'd like to see, please raise a
19-
[feature request](https://github.com/SeleniumHQ/selenium/issues/new?assignees=&labels=&template=feature.md).
10+
## Registrar autenticação básica
2011

21-
## Register Basic Auth
22-
23-
Some applications make use of browser authentication to secure pages.
24-
With Selenium, you can automate the input of basic auth credentials whenever they arise.
12+
Alguns aplicativos fazem o uso da autenticação do navegador para proteger suas páginas. Com o Selenium, você pode automatizar a entrada de credenciais básicas de autenticação sempre que for necessário.
2513

2614
{{< tabpane langEqualsHeader=true >}}
2715
{{< tab header="Java" >}}
@@ -31,7 +19,7 @@ Predicate<URI> uriPredicate = uri -> uri.getHost().contains("your-domain.com");
3119
driver.get("https://your-domain.com/login");
3220
{{< /tab >}}
3321
{{< tab header="Python" >}}
34-
# Please raise a PR to add code sample
22+
# Por favor, crie um PR para adicionar a amostra de código
3523
{{< /tab >}}
3624
{{< tab header="CSharp" >}}
3725
NetworkAuthenticationHandler handler = new NetworkAuthenticationHandler()
@@ -86,9 +74,7 @@ driver.get("https://your-domain.com/login")
8674

8775
## Mutation Observation
8876

89-
Mutation Observation is the ability to capture events via
90-
WebDriver BiDi when there are DOM mutations on a specific
91-
element in the DOM.
77+
Mutation Observation(Observação de Mutação) é a capacidade de capturar eventos via WebDriver BiDi quando há mutações DOM em um elemento específico no DOM.
9278

9379
{{< tabpane langEqualsHeader=true >}}
9480
{{< tab header="Java" >}}
@@ -202,13 +188,12 @@ const assert = require("assert");
202188
}())
203189
{{< /tab >}}
204190
{{< tab header="Kotlin" >}}
205-
# Please raise a PR to add code sample
191+
# Por favor, crie um PR para adicionar a amostra de código
206192
{{< /tab >}}
207193
{{< /tabpane >}}
208194

209-
## Listen to `console.log` events
210-
211-
Listen to the `console.log` events and register callbacks to process the event.
195+
## Vigie eventos `console.log`
196+
Vigie os eventos `console.log` e registre os callbacks(retornos de chamada) para processar o evento.
212197

213198
{{< tabpane langEqualsHeader=true >}}
214199
{{< tab header="Java" >}}
@@ -222,7 +207,7 @@ devTools.addListener(Log.entryAdded(),
222207
System.out.println("level: "+logEntry.getLevel());
223208
});
224209
driver.get("http://the-internet.herokuapp.com/broken_images");
225-
// Check the terminal output for the browser console messages.
210+
// Para ver as mensagens do console no navegador verifique a saída do terminal.
226211
driver.quit();
227212
{{< /tab >}}
228213
{{< tab header="Python" >}}
@@ -308,10 +293,10 @@ fun kotlinConsoleLogExample() {
308293
{{< /tab >}}
309294
{{< /tabpane >}}
310295

311-
## Listen to JS Exceptions
296+
## Vigie exceções JS
312297

313-
Listen to the JS Exceptions
314-
and register callbacks to process the exception details.
298+
Vigie as exceções JS
299+
e registre callbacks(retornos de chamada) para processar os detalhes da exceção.
315300

316301
{{< tabpane langEqualsHeader=true >}}
317302
{{< tab header="Java" >}}
@@ -351,7 +336,7 @@ async def catchJSException():
351336
driver.get("<your site url>")
352337
log = Log(driver, session)
353338
async with log.add_js_error_listener() as messages:
354-
# Operation on the website that throws an JS error
339+
# Ação no site que gera um erro JS
355340
print(messages)
356341

357342
driver.quit()
@@ -390,7 +375,7 @@ begin
390375
puts exceptions.length
391376
end
392377

393-
# Actions causing JS exceptions
378+
# Ações que causam exceções JS
394379

395380
ensure
396381
driver.quit
@@ -441,10 +426,10 @@ fun kotlinJsErrorListener() {
441426
{{< /tab >}}
442427
{{< /tabpane >}}
443428

444-
## Network Interception
429+
## Interceptação de Rede
445430

446-
If you want to capture network events coming into the browser and you want manipulate them you are able to do
447-
it with the following examples.
431+
Se você quer capturar eventos de rede que chegam ao navegador e deseja manipulá-los, você pode fazer
432+
com os exemplos a seguir.
448433

449434
{{< tabpane langEqualsHeader=true >}}
450435
{{< tab header="Java" >}}
@@ -471,10 +456,10 @@ it with the following examples.
471456
assertThat(source).contains("delicious cheese!");
472457
{{< /tab >}}
473458
{{< tab header="Python" >}}
474-
# Currently unavailable in python due the inability to mix certain async and sync commands
459+
# Atualmente indisponível no python devido à incapacidade de misturar certos comandos async(assíncronos) e de sync(sincronização)
475460
{{< /tab >}}
476461
{{< tab header="CSharp" >}}
477-
# Please raise a PR to add code sample
462+
# Por favor, crie um PR para adicionar a amostra de código
478463
{{< /tab >}}
479464
{{< tab header="Ruby" >}}
480465
require 'selenium-webdriver'

0 commit comments

Comments
 (0)