-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bidi] Add network module commands documentation
- Loading branch information
Showing
4 changed files
with
508 additions
and
0 deletions.
There are no files selected for viewing
120 changes: 120 additions & 0 deletions
120
...docs/content/documentation/webdriver/bidirectional/webdriver_bidi/network.en.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
--- | ||
title: "Network" | ||
linkTitle: "Network" | ||
weight: 1 | ||
aliases: [ | ||
"/documentation/en/webdriver/bidirectional/bidirectional_w3c/network", | ||
] | ||
--- | ||
|
||
This section contains the APIs related to network commands. | ||
|
||
## Add network intercept | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L36-L38" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Remove network intercept | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L46-L50" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Continue request blocked at authRequired phase with credentials | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L57-L64" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Continue request blocked at authRequired phase without credentials | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L74-L80" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Cancel request blocked at authRequired phase | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L90-L96" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Fail request | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L104-L108" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
|
130 changes: 130 additions & 0 deletions
130
...docs/content/documentation/webdriver/bidirectional/webdriver_bidi/network.ja.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
--- | ||
title: "Network" | ||
linkTitle: "Network" | ||
weight: 1 | ||
aliases: [ | ||
"/documentation/en/webdriver/bidirectional/bidirectional_w3c/network", | ||
] | ||
--- | ||
|
||
{{% pageinfo color="warning" %}} | ||
<p class="lead"> | ||
<i class="fas fa-language d-4"></i> | ||
Page being translated from | ||
English to Japanese. Do you speak Japanese? Help us to translate | ||
it by sending us pull requests! | ||
</p> | ||
{{% /pageinfo %}} | ||
|
||
|
||
This section contains the APIs related to network commands. | ||
|
||
## Add network intercept | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L36-L38" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Remove network intercept | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L46-L50" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Continue request blocked at authRequired phase with credentials | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L57-L64" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Continue request blocked at authRequired phase without credentials | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L74-L80" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Cancel request blocked at authRequired phase | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L90-L96" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Fail request | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L104-L108" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
|
129 changes: 129 additions & 0 deletions
129
...s/content/documentation/webdriver/bidirectional/webdriver_bidi/network.pt-br.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
--- | ||
title: "Network" | ||
linkTitle: "Network" | ||
weight: 1 | ||
aliases: [ | ||
"/documentation/en/webdriver/bidirectional/bidirectional_w3c/network", | ||
] | ||
--- | ||
|
||
{{% pageinfo color="warning" %}} | ||
<p class="lead"> | ||
<i class="fas fa-language d-4"></i> | ||
Page being translated from | ||
English to Portuguese. Do you speak Portuguese? Help us to translate | ||
it by sending us pull requests! | ||
</p> | ||
{{% /pageinfo %}} | ||
|
||
This section contains the APIs related to network commands. | ||
|
||
## Add network intercept | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L36-L38" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Remove network intercept | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L46-L50" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Continue request blocked at authRequired phase with credentials | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L57-L64" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Continue request blocked at authRequired phase without credentials | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L74-L80" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Cancel request blocked at authRequired phase | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L90-L96" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
## Fail request | ||
|
||
{{< tabpane text=true >}} | ||
{{< tab header="Java" >}} | ||
{{< badge-version version="4.18" >}} | ||
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi/NetworkCommandsTest.java#L104-L108" >}} | ||
{{< /tab >}} | ||
{{< tab header="Ruby" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="JavaScript" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< tab header="Kotlin" >}} | ||
{{< badge-code >}} | ||
{{< /tab >}} | ||
{{< /tabpane >}} | ||
|
||
|
Oops, something went wrong.