Releases: gemini-testing/testplane
Releases · gemini-testing/testplane
hermione/v7.4.0
🚀 Improvements
- add basic unhandled rejection stack trace
hermione/v7.3.0
🚀 Improvements
- add ability to disable animations and transitions while capturing screenshot for
assertView
.
Example:
it('test', async ({browser}) => {
await browser.url('https://github.com/gemini-testing/hermione/');
await browser.assertView('plain', 'body', {disableAnimation: true});
});
hermione/v7.2.0
🚀 Improvements
- add ability to run tests in isolated environment (incognito browser context) which currently works only in chrome@93 and higher. Allows not to think about clearing the state after each test execution. And much more faster than using
testsPerSession: 1
. To enable it you must specify the optionisolation: true
for chrome@93 and higher. By default test isolation is disabled (#799)
hermione/v7.1.6
🐛 Bug fixes
- fix image comparation out of bounds
hermione/v7.1.3
🐛 Bug fixes
- use exact version of [email protected] (#784)
hermione/v7.1.2
🐛 Bug fixes
- ignore protocol errors (#780)
hermione/v7.1.1
🐛 Bug fixes
- do not reinit cached browser session in worker (#764)
hermione/v7.1.0
What's Changed
- feat: add "headless" setting for the main 3 browsers by @rprovodenko in #768
New Contributors
- @rprovodenko made their first contribution in #768
Full Changelog: v7.0.9...v7.1.0
hermione/v7.0.7
🐛 Bug fixes
- correctly calculate "height" of capture elements in mobile devices (#764)
hermione/v7.0.6
🐛 Bug fixes
- handle more correctly cases with unhandled rejections due to circular references (#763)