Skip to content

Commit b0420f3

Browse files
authored
Rename /devtools-protocol-chromium/ to /devtools/protocol/ (#3481)
* elim ~/devtools-protocol-chromium/ * linkfix * linkfix & See * start /devtools/ dir * linkfix after /devtools/ * suppress EdgeHTML
1 parent 37c27e0 commit b0420f3

File tree

7 files changed

+28
-18
lines changed

7 files changed

+28
-18
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,11 @@
154154
"redirect_url": "/microsoft-edge/devtools-guide-chromium/sensors/#simulate-device-orientation",
155155
"redirect_document_id": false
156156
},
157+
{
158+
"source_path": "./microsoft-edge/devtools-protocol-chromium/index.md",
159+
"redirect_url": "/microsoft-edge/devtools/protocol/index",
160+
"redirect_document_id": false
161+
},
157162
// /Microsoft Edge DevTools
158163
// ============================================================================
159164
// Microsoft Edge extensions

microsoft-edge/developer/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ landingContent:
210210
url: ../test-and-automation/test-and-automation.md
211211

212212
- text: DevTools Protocol
213-
url: ../devtools-protocol-chromium/index.md # https://learn.microsoft.com/microsoft-edge/devtools-protocol-chromium/
213+
url: ../test-and-automation/devtools-protocol.md # jump page
214214

215215
- text: Use Playwright to automate and test in Microsoft Edge
216216
url: ../playwright/index.md

microsoft-edge/devtools-protocol-chromium/index.md renamed to microsoft-edge/devtools/protocol/index.md

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,7 @@ ms.date: 04/06/2021
99
---
1010
# Microsoft Edge DevTools Protocol
1111

12-
Use the DevTools Protocol to instrument, inspect, debug, and profile browsers including Microsoft Edge. The Microsoft Edge DevTools Protocol matches the APIs of the Chrome DevTools Protocol. For reference documentation, go to [Chrome DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/tot).
13-
14-
> [!NOTE]
15-
> With the shift in the underlying web platform of Microsoft Edge to Chromium, the [Microsoft Edge (EdgeHTML) DevTools Protocol](/archive/microsoft-edge/legacy/developer/devtools-protocol/index) won't be receiving any further updates. Going forward, the Microsoft Edge DevTools Protocol will match the APIs of the Chrome DevTools Protocol.
16-
>
17-
> Any methods that were prefixed with `ms` in the [Microsoft Edge (EdgeHTML) DevTools Protocol](/archive/microsoft-edge/legacy/developer/devtools-protocol/index) are no longer supported in the Microsoft Edge DevTools Protocol.
12+
Use the DevTools Protocol to instrument, inspect, debug, and profile browsers including Microsoft Edge. The Microsoft Edge DevTools Protocol matches the APIs of the Chrome DevTools Protocol. For Reference documentation, see [Chrome DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/tot).
1813

1914

2015
<!-- ====================================================================== -->
@@ -133,11 +128,11 @@ String("Target is closing")
133128
134129
You can install the [Remote Tools for Microsoft Edge](https://apps.microsoft.com/detail/9p6cmfv44zlt) from the [Microsoft Store](https://apps.microsoft.com). This app enables you to remotely debug Microsoft Edge running on a Windows 10 or later device from your development machine.
135130
136-
To learn how to set up your Windows device and connect to it from your development machine, see [Get started with remote debugging Windows devices](../devtools-guide-chromium/remote-debugging/windows.md).
131+
To learn how to set up your Windows device and connect to it from your development machine, see [Remotely debug Windows devices](../../devtools-guide-chromium/remote-debugging/windows.md).
137132
138-
The [Remote Tools for Microsoft Edge](https://apps.microsoft.com/detail/9p6cmfv44zlt) uses the same Microsoft Edge DevTools Protocol as [DevTools](../devtools-guide-chromium/overview.md) to communicate with Microsoft Edge running on the Windows 10 or later device you want to debug. This app just prepends `/msedge/` and a process ID (`pid`) before each call to the protocol. It supports the following HTTP endpoints.
133+
The [Remote Tools for Microsoft Edge](https://apps.microsoft.com/detail/9p6cmfv44zlt) app uses the same Microsoft Edge DevTools Protocol as used by Microsoft Edge DevTools, to communicate with Microsoft Edge running on the Windows 10 or later device you want to debug. This app just prepends `/msedge/` and a process ID (`pid`) before each call to the protocol.
139134
140-
The following Reference sections are for Remote Tools for Microsoft Edge.
135+
The Remote Tools for Microsoft Edge app supports the following HTTP endpoints; the Reference sections below are for Remote Tools for Microsoft Edge.
141136
142137
143138
<!-- ====================================================================== -->
@@ -161,7 +156,7 @@ None.
161156
<!-- ====================================================================== -->
162157
## /msedge/json/list
163158

164-
Provides a candidate list of all Microsoft Edge and WebView2 Runtime processes running on the connected device (including [PWAs](../progressive-web-apps-chromium/index.md)) and all tabs or targets in each process available for debugging.
159+
Provides a candidate list of all Microsoft Edge and WebView2 Runtime processes running on the connected device (including PWAs) and all tabs or targets in each process available for debugging.
165160

166161
**Parameters**
167162

@@ -201,6 +196,9 @@ None.
201196
]
202197
```
203198

199+
See also:
200+
* [Overview of Progressive Web Apps (PWAs)](../../progressive-web-apps-chromium/index.md)
201+
204202

205203
<!-- ====================================================================== -->
206204
## /msedge/
@@ -273,9 +271,17 @@ None.
273271
JSON object which represents the available API surface for the version of the protocol that the Microsoft Edge instance that matches the provided `[pid]` is using.
274272

275273

274+
<!-- ====================================================================== -->
275+
## EdgeHTML DevTools Protocol
276+
277+
With the shift in the underlying web platform of Microsoft Edge to Chromium, the [Microsoft Edge (EdgeHTML) DevTools Protocol](/archive/microsoft-edge/legacy/developer/devtools-protocol/index) won't be receiving any further updates. Going forward, the Microsoft Edge DevTools Protocol will match the APIs of the Chrome DevTools Protocol.
278+
279+
Any methods that were prefixed with `ms` in the [Microsoft Edge (EdgeHTML) DevTools Protocol](/archive/microsoft-edge/legacy/developer/devtools-protocol/index) are no longer supported in the Microsoft Edge DevTools Protocol.
280+
281+
276282
<!-- ====================================================================== -->
277283
## See also
278284

279285
* [Chrome DevTools Protocol](https://chromedevtools.github.io/devtools-protocol/)
280-
* [Chrome DevTools Protocol (CDP)](../webview2/concepts/overview-features-apis.md#chrome-devtools-protocol-cdp) in _Overview of WebView2 APIs_
281-
* [Use the Chrome DevTools Protocol (CDP) in WebView2 apps](../webview2/how-to/chromium-devtools-protocol.md)
286+
* [Chrome DevTools Protocol (CDP)](../../webview2/concepts/overview-features-apis.md#chrome-devtools-protocol-cdp) in _Overview of WebView2 APIs_.
287+
* [Use the Chrome DevTools Protocol (CDP) in WebView2 apps](../../webview2/how-to/chromium-devtools-protocol.md)

microsoft-edge/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ conceptualContent:
368368
itemType: overview
369369

370370
- text: DevTools Protocol
371-
url: ./test-and-automation/devtools-protocol.md
371+
url: ./test-and-automation/devtools-protocol.md # jump page
372372
itemType: how-to-guide
373373

374374
- text: Use Playwright to automate and test in Microsoft Edge

microsoft-edge/test-and-automation/devtools-protocol.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ ms.date: 1/30/2023
1111

1212
Use the DevTools Protocol to instrument, inspect, debug, and profile browsers, including Microsoft Edge. By building Microsoft Edge on the Chromium open-source project, the Microsoft Edge DevTools Protocol matches the APIs of the Chrome DevTools Protocol. For information about how Microsoft Edge uses the Chromium open-source project, see [Microsoft Edge and Chromium Open Source: Our Intent](https://github.com/MicrosoftEdge/MSEdge/blob/master/README.md).
1313

14-
See [Microsoft Edge DevTools Protocol overview](../devtools-protocol-chromium/index.md).
14+
See [Microsoft Edge DevTools Protocol](../devtools/protocol/index.md).

microsoft-edge/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -983,7 +983,7 @@
983983
displayName: IE mode
984984
# DevTools Protocol -----------------------------------------------------------
985985
- name: Microsoft Edge DevTools Protocol
986-
href: devtools-protocol-chromium/index.md
986+
href: ./devtools/protocol/index.md
987987
displayName: DevTools Protocol
988988
# Contact ---------------------------------------------------------------------
989989
- name: Contact the Microsoft Edge DevTools team

microsoft-edge/webview2/how-to/chromium-devtools-protocol.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ The Chrome DevTools Protocol is maintained by the open source Chromium project,
179179

180180
<!-- ====================================================================== -->
181181
## See also
182-
183-
* [Microsoft Edge DevTools Protocol overview](../../devtools-protocol-chromium/index.md)
182+
* [Microsoft Edge DevTools Protocol](../../devtools/protocol/index.md)
184183
* [WebView2Samples repo](https://github.com/MicrosoftEdge/WebView2Samples)
185184
* [Chrome DevTools Protocol (CDP)](../concepts/overview-features-apis.md#chrome-devtools-protocol-cdp) in _Overview of WebView2 APIs_

0 commit comments

Comments
 (0)