SCRIPT2343: Stack overflow on IE11 / Microsoft Edge
See original GitHub issueFollowing Error will be throw when running cases on IE11 / Edge
1) An error occurred in Selector code:
Error: Out of stack space
Browser: IE 11.0.0 / Windows 10.0.0
If not using react-selector, then everything is ok.
Here is a minimal reproduce for this bug:
import 'testcafe';
import { waitForReact, ReactSelector } from 'testcafe-react-selectors';
fixture('semantic')
.page(`https://react.semantic-ui.com/elements/button/`)
test(`using react selector`, async (t) => {
await waitForReact();
const el = ReactSelector('div');
await t
.expect(el.count).eql(1);
})
And result with detail log is here: react-ie-edge-bug.txt
It seems like some kind of polyfill things common on IE11/Edge.
Issue Analytics
- State:
- Created 5 years ago
- Comments:10 (2 by maintainers)
Top Results From Across the Web
Edge is redirecting to IE11 [closed] - Stack Overflow
However, my problem is that Edge is opening a separate IE11 window rather than loading a web page. I want to open a...
Read more >Stack overflow error whenever I open Internet Explorer
I understand that you receive Stack Overflow error whenever you open Internet Explorer. I would definitely help you in fixing this issue.
Read more >Angular 9 Application Not Running On Ie11 - ADocLib
I am facing with a "Out of stack space" in IE SCRIPT28: Out of stack space File: zone.js Line: 385 Column: 18 SCRIPT2343:...
Read more >Minor alignment issue in the site's home page for the ...
... in the Mozilla Firefox, Google Chrome, Microsoft Edge browsers. Anonymous user. When viewing from Internet Explorer 11, it is displaying ...
Read more >Untitled
Ford mustang 85, Kapetanske zastavice, Chrysler ms 10850, Price of gold per oz in us dollars, ... Coassiali altoparlanti, Script2343 stack overflow at...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@link89, I’ve investigated the problem, and it’s definitely caused by a bug in the
testcafe-hammerhead
package: https://github.com/DevExpress/testcafe-hammerhead/issues/1763. I will inform you as soon as a fix is available and the fixed TestCafe version is published to NPM.@link89, yes, it’s included in the
testcafe@0.23.0
, you can give it a try!