Skip to content

Software Quality Tools

Everything related to the Software Quality Tools

96 Topics 266 Posts
Qt 6.11 is out! See what's new in the release blog

Subcategories


  • This is where all questions related to Axivion Suite belong

    1 1
    1 Topics
    1 Posts
    AndySA
    Currently it is not possible to get support for Axivion Suite via this forum. Therefore you need to use the email address in the communication you got when the license was purchased. Or alternatively log into the Customer Portal and create a support request there with the request set to be Axivion.
  • This is where all questions related to Squish belong

    84 221
    84 Topics
    221 Posts
    C
    @Emma-2000 said in Squish for Java, select an item in a list box: I’ve run into a similar issue with long JavaFX lists where the target item isn’t initially visible. Using the component’s available items/model instead of relying only on scrolling seems much more reliable, especially when the test input changes dynamically. Agreed on using the model and toolkit API to access or even scroll a particular object into view. (Squish for Java tries to automatically scroll an object into view upon mouseClick(). And one can pass Button.NoButton (https://doc.qt.io/squish/java-convenience-api.html#java-convenience-function-parameters) to mouseClick() to trigger the scrolling attempt without performing a mouse click.) The approach with obj.items.length, obj.items.get(i) and assigning obj.value looks particularly useful for making the test independent of the item’s position in the list. obj.items.get(i) requires specifying the index of the item, which I intuitively understand to be the "position in the list". Perhaps by "position" you meant the location on the screen? If so, yes, hardcoded positions are better to be avoided. (Squish is using screen positions for sending events, etc. - but it determines/calculates these screen locations at runtime.) Ah, after further consideration, you probably meant iterating over the items until the desired one is found. Alright.
  • This is where all questions related to Coco belong

    5 17
    5 Topics
    17 Posts
    J
    Hi @ViniciusCarvalho just wanted to know if you were able to get the profiling that you looking for? The profiling results are displayed in the execution report pane under the time column, you can open if its not already open in the coverage browser with "File --> Execution Comparison Analysis." were these not available in your coverage data? I am also trying to work on similar case, so I’m curious to hear how it went on your side
  • This is where all questions related to Test Center belong

    6 27
    6 Topics
    27 Posts
    Z
    @JonB Thank you!