spix icon indicating copy to clipboard operation
spix copied to clipboard

UI test automation library for QtQuick/QML Apps

Results 24 spix issues
Sort by recently updated
recently updated
newest added

I have added a example using QtTest to run remote actions on a TestServer. It also has some handy functions to use AnyRPC in QtTests.

I know it is a bit bigger PR. ### Recording: I create a minimal Recording Feature, it creates a Python Script with the Click you make. You can start the...

I create two new functions, `mouseClickWithWait` and `mouseClickWithButtonAndWait`. These functions wait that an Element exist and then click. It saves the wait commands that would otherwise have to be made....

I added a function to wait for a path. It is useful when you click on a UI, and have to wait for an Element. Can be used: ```python from...

Hello, I create a Pick click. It can be used to find a Path to the Qt Items. It is a bit similar to the #102 from @auxxos. But my...

I added the option in Path to use `#` for finding types of a Qml Object. Finding Text with `"yout text"`. And a filter for looking at Properties `(source=qrc:/menu/back.png)`. Example...

Add new parameters (proportion and offset) to the mouseClick function. For the end User this will end in two new Functions `mouseClickWithProportion` and `mouseClickWithOffset`. It will be possible to click...

Adding the capability to also click modifier keys during mouse click. Cloud be useful in Application where you have to select each element.

As I have just spent an hour trying to understand what the command `command` does, I have documented this in the README. I also find the word generic a little...

Add a Remote Screenshot Function this creates a screenshot like the normal screenshot, except that it outputs the image as Base64 String. It could be useful for example on embedded...