Reporting a bug, but more of a question
Leveraging _older_ versions of TestCafe to run automated tests on legacy browsers does not work, pages load but interactions and assertions are not being executed.
Older versions of TestCafe have compatibility with IE9
I know that older versions of TestCafe did support IE9, this is well documented in the past forum and within a few issues. I tried downgrading to versions 0.19.0, 0.18.6, and 0.18.3, but unable to get TestCafe to run automated tests on IE9.
I know the documentation that laid out the official browser support had changed around the release of 0.19.0.
Tested page URL: http://devexpress.github.io/testcafe/example
Test code
import { Selector } from 'testcafe';
fixture `Getting Started`
.page `http://devexpress.github.io/testcafe/example`;
test('My first test', async t => {
await t
.typeText('#developer-name', 'John Smith')
.click('#submit-button');
});
Windows 7 Ultimate0.19.0, 0.18.6, 0.18.38.11.2IE9Hi @chinjon! Despite we cleaned our repositories from the code that supported IE 9 & IE 10 not so long time ago, we stopped running our tests in these browser regularly before the 0.9.0-rc1. So the last known version that works in IE 9 & 10 is 0.3.1-alpha.
@AndreyBelym Alright, thank you so much for the response. Did some additional testing on my end and found that 0.17.2 works fine with IE9 and IE10.
0.18.6 also works with IE10
This thread has been automatically locked since it is closed and there has not been any recent activity. Please open a new issue for related bugs or feature requests. We recommend you ask TestCafe API, usage and configuration inquiries on StackOverflow.