Skip to content

Releases: gemini-testing/testplane-safari-commands

hermione/v2.1.0

08 Apr 11:16
Compare
Choose a tag to compare

🚀 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

24 Mar 08:51
Compare
Choose a tag to compare

🚀 Improvements

  • switch from pngjs to sharp which is faster (#25)

💣 Breaking changes

  • node versions less than 16.0.0 are no longer supported (#25)

hermione/v1.0.0

19 Sep 08:43
Compare
Choose a tag to compare

📑 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

05 Oct 09:50
Compare
Choose a tag to compare

🐛 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.