testcafe just stops/hangs when I added --disable-search-engine-choice-screen in package.json #8333
Labels
STATE: Need clarification
An issue lacks information for further research.
TYPE: bug
The described behavior is considered as wrong (bug).
What is your Scenario?
I had to add --disable-search-engine-choice-screen in my package.json since testcafe is not working on latest chrome version
"production": "export NODE_ENV=production && npx testcafe ${BROWSER:-"chrome --start-fullscreen --disable-search-engine-choice-screen"} tests/* --debug-on-fail"
What is the Current behavior?
On running the specific test by fixture.only, the chrome doesnt respond/hangs on running the test
What is the Expected behavior?
The test should run successfully.
What is the public URL of the test page? (attach your complete example)
What is your TestCafe test code?
fixture.only
Directory Listing Page
.page(url.root);test('Display Top 3 Banner Ads with correct speciality and location', async (t) => {
await Steps.search(
'Psychologist in melbourne 3000',
'specialties_in_localities',
'Psychologist in Melbourne VIC 3000',
);
await t
.expect(DirectoryListingPO.directoryListingBannerAds.count)
.gte(2)
.expect(DirectoryListingPO.titleTextContent())
.contains(
'Psychologists in Melbourne VIC 3000',
'Title does not exist or incorrect',
)
.expect(
DirectoryListingPO.directoryListingBannerAdSpeciality.withText(
'Psychologist',
).count,
)
.gte(2)
.expect(DirectoryListingPO.directoryListingBannerAdSpecialityFeaturedTitle.withText(
'Featured',
).count,
)
.gte(2);
})
Your complete configuration file
No response
Your complete test report
No response
Screenshots
No response
Steps to Reproduce
TestCafe version
3.6.2
Node.js version
v18.12.1
Command-line arguments
npm run production
Browser name(s) and version(s)
Chrome 130.0.6723.92
Platform(s) and version(s)
Macos
Other
No response
The text was updated successfully, but these errors were encountered: