Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IE & Edge disconnect too often on heavy websites #1935

Closed
lustoykov opened this issue Nov 9, 2017 · 2 comments
Closed

IE & Edge disconnect too often on heavy websites #1935

lustoykov opened this issue Nov 9, 2017 · 2 comments
Labels
STATE: Need clarification An issue lacks information for further research.

Comments

@lustoykov
Copy link

lustoykov commented Nov 9, 2017

Are you requesting a feature or reporting a bug?

Bug

What is the current behavior?

IE & Edge disconnect too often on heavy websites

What is the expected behavior?

IE & Edge do not disconnect and execute the complete test suite

How would you reproduce the current behavior (if this is a bug)?

Run the code below, ideally IE & Edge in parallel, with --skip-js-errors flag (because the ads throw errors in the console)

Provide the test code and the tested page URL (if applicable)

Tested page URL:

https://www.gutefrage.net/frage/wann-werden-genossenschaftsanteile-einer--bank-ausgezahlt

Test code

fixture('QDP Shared')
  .page('https://www.gutefrage.net/frage/wann-werden-genossenschaftsanteile-einer--bank-ausgezahlt')

test('Question plate is shown', async t => {
  const questionDetail = Selector('#Question-detail');
  await t.expect(questionDetail.exists).ok();
});

test('Answer plates are shown', async t => {
  const answers = Selector('.Plate.Plate--answer');
  await t.expect(answers.count).gte(1);
});

Note: We usually run other tests prior those and they are OK (they're run against the homepage www.gutefrage.net, where there're no ads)

Specify your

  • operating system:
    Windows 10
  • testcafe version:
    0.17.2
  • node.js version:
    8.9.1

PS. We're also interested how to debug the issue, get more logs or maybe point out relevant code where this could happen. Thanks!

@AndreyBelym
Copy link
Contributor

AndreyBelym commented Nov 13, 2017

Hello @lustoykov!

Unfortunately, I wasn't able to find something specific to your website. Microsoft browsers, especially IE, are known for memory leaks in large JS scripts. It can cause browser crashes and hangs. We have an issue to restart browsert that became unresponsive: #1815, you can vote for it to show its importance and promote it for next development iteration

@AndreyBelym AndreyBelym reopened this Nov 13, 2017
@AlexanderMoskovkin AlexanderMoskovkin added the STATE: Need clarification An issue lacks information for further research. label Nov 13, 2017
@AlexanderMoskovkin
Copy link
Contributor

I'm closing this since there were no activity here for a long time. Feel free to reopen the issue if it's still needed.
Also, you can try to run your tests on the latest TestCafe version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
STATE: Need clarification An issue lacks information for further research.
Projects
None yet
Development

No branches or pull requests

3 participants