Skip to content
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,7 @@ venv/
.pydevproject
**/*.iml
**/.gradle
entities.json
mempalace.yaml
# Ignore .local used for worktrees
.local/
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Selenium Manager (Beta)"
title: "Selenium Manager"
linkTitle: "Selenium Manager"
weight: 3
description: >
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Selenium Manager (Beta)"
title: "Selenium Manager"
linkTitle: "Selenium Manager"
weight: 3
description: >
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Gerenciador do Selenium (Beta)"
title: "Gerenciador do Selenium"
linkTitle: "Gerenciador do Selenium"
weight: 3
description: >
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Selenium Manager (测试版)"
title: "Selenium Manager"
linkTitle: "Selenium Manager"
weight: 3
description: >
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
---
title: "BiDirectional functionality"
title: "WebDriver BiDi"
linkTitle: "BiDi"
weight: 16
description: >
WebDriver BiDi is the W3C standard bidirectional protocol for browser automation, created by the
Selenium project together with the browser vendors. It adds a WebSocket connection to WebDriver
so scripts can stream and react to browser events — network requests, console messages,
JavaScript errors — and it is the cross-browser replacement for the Chrome DevTools Protocol.
aliases: [
"/documentation/en/webdriver/bidi_apis/",
"/documentation/webdriver/bidi_apis/",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
---
title: "双方向機能"
title: "WebDriver BiDi (双方向機能)"
linkTitle: "BiDi"
weight: 16
description: >
WebDriver BiDi は、Selenium プロジェクトとブラウザベンダーが共同で策定した、ブラウザ自動化のための
W3C 標準の双方向プロトコルです。WebDriver に WebSocket 接続を追加することで、ネットワークリクエスト、
コンソールメッセージ、JavaScript エラーといったブラウザイベントをリアルタイムに受け取って処理できます。
Chrome DevTools Protocol を置き換える、クロスブラウザな標準です。
aliases: [
"/documentation/en/webdriver/bidi_apis/",
"/documentation/webdriver/bidi_apis/",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
---
title: "BiDirectional functionality"
title: "WebDriver BiDi"
linkTitle: "BiDi"
weight: 16
description: >
O WebDriver BiDi é o protocolo bidirecional padrão do W3C para automação de navegadores, criado
pelo projeto Selenium junto com os fabricantes de navegadores. Ele adiciona uma conexão
WebSocket ao WebDriver, permitindo que scripts recebam e reajam a eventos do navegador —
requisições de rede, mensagens de console e erros de JavaScript — e é o substituto
multi-navegador do Chrome DevTools Protocol.
aliases: [
"/documentation/en/webdriver/bidi_apis/",
"/documentation/webdriver/bidi_apis/",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
---
title: "双向功能"
title: "WebDriver BiDi (双向功能)"
linkTitle: "BiDi"
weight: 16
description: >
WebDriver BiDi 是由 Selenium 项目与各浏览器厂商共同制定的 W3C 标准双向协议, 用于浏览器自动化.
它在 WebDriver 之上增加了 WebSocket 连接, 使脚本能够实时接收并响应浏览器事件, 包括网络请求, 控制台消息和 JavaScript 错误.
它是取代 Chrome DevTools Protocol 的跨浏览器标准.
aliases: [
"/documentation/en/webdriver/bidi_apis/",
"/documentation/webdriver/bidi_apis/",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ title: "BiDirectional API (W3C compliant)"
linkTitle: "W3C"
weight: 16
description: >
Examples of working with Chrome DevTools Protocol in Selenium.
CDP support is temporary until WebDriver BiDi has been implemented.
Examples of working with the W3C WebDriver BiDi protocol in Selenium — the standard,
cross-browser replacement for the Chrome DevTools Protocol. These APIs stream events from the
browser over a WebSocket, for network interception, console logs, and browser event handling.
aliases: [
"/documentation/en/webdriver/bidirectional/bidirectional_w3c",
"/documentation/en/webdriver/bidi_apis/bidi_w3c",
Expand Down
Loading