Releases: gemini-testing/testplane-safari-commands
Releases · gemini-testing/testplane-safari-commands
hermione/v2.1.0
🚀 Improvements
- add
nativeElementsSize
options (#26). Element sizes must be specified as number of the pixels without counting the pixel ratio. Can be used in order to speed up taking screenshots. Looks like:
// hermione.conf.js
// ...
'hermione-safari-commands': {
nativeElementsSize: {
topToolbar: {
height: 47,
width: 390
},
bottomToolbar: {
height: 113,
width: 390
},
webview: {
height: 654,
width: 390
}
}
}
🥇 New Contributors
@aakapustin made their first contribution in #26
hermione/v2.0.0
hermione/v1.0.0
📑 Summary
This release allows the plugin to work with hermione@4 without wdio-migrator.
🚀 Improvements
- add hermione >= 4 support
💣 Breaking changes
- drop support for hermione@3
- click, dragAndDrop, touch are now element's methods
hermione/v0.4.4
🐛 Bug fixes
- Now change browser execution context to the web before executing test (runs in beforeEach hook). It is necessary that the previous test that failed while in the native context does not affect the execution of the next one.