Skip to content
Merged
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
17 changes: 17 additions & 0 deletions docs/app/references/launching-browsers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,15 @@ Or Chrome for Testing:
cypress run --browser chrome-for-testing
```

#### Chrome policy

If Chrome policy is set, ensure that
[RemoteDebuggingAllowed](https://chromeenterprise.google/policies/#RemoteDebuggingAllowed)
is either undefined or set to `true`.
If this is not the case, then Cypress will timeout, returning an `ECONNREFUSED` error, attempting to connect to the browser.
Chrome policy is generally applied to a Chrome-branded browser only, not to Chromium or Chrome for Testing browsers.
Check by browsing to **chrome://policy**.

### Edge Browsers

Microsoft Edge-family (Chromium-based) browsers are supported by Cypress.
Expand Down Expand Up @@ -165,6 +174,14 @@ Or Microsoft Edge Dev:
cypress run --browser edge:dev
```

#### Edge policy

If Edge policy is set, ensure that
[RemoteDebuggingAllowed](https://learn.microsoft.com/en-us/deployedge/microsoft-edge-browser-policies/remotedebuggingallowed)
is either undefined or set to `true`.
If this is not the case, then Cypress will timeout, returning an `ECONNREFUSED` error, attempting to connect to the browser.
Check by browsing to **edge://policy**.

### Firefox Browsers

Firefox-family browsers are supported by Cypress.
Expand Down