Closed
Description
What is your Scenario?
I would like to run testcafe with a Yarn PnP setup.
What is the Current behavior?
I get the following error when trying to run TestCafe:
ERROR Cannot establish one or more browser connections.
What is the Expected behavior?
TestCafe correctly finds my browser and runs the test successfully.
What is your public website URL? (or attach your complete example)
https://github.com/aboe026/testcafe-yarn-browser-connection
What is your TestCafe test code?
import { Selector } from "testcafe";
fixture("Lifecycle").page("https://google.com");
test("Search bar exists", async (t) => {
await t.expect(Selector('input[title="Search"]').exists).ok();
});
Your complete configuration file
{
"browsers": ["chrome"],
"screenshots": {
"path": "screenshots",
"takeOnFails": true
},
"src": "tests"
}
Your complete test report
No response
Screenshots
No response
Steps to Reproduce
https://github.com/aboe026/testcafe-yarn-browser-connection#steps-to-reproduce
TestCafe version
2.1.0
Node.js version
v16.13.2
Command-line arguments
testcafe --config-file=.testcaferc.json
Browser name(s) and version(s)
Chrome 107.0.5304.107
Platform(s) and version(s)
Windows 11 Pro 10.0.22621.819
Other
No response