Skip to content
  • 145k Topics
    723k Posts
    G
    [image: 78090e6f-f333-4399-ac90-b0766dfc7d8a.png] I can't choose anything like the picture, when I want to install Qt 6.9.2. Before this, I have uninstall it, now I want to install it again, it happened!
  • Jobs, project showcases, announcements - anything that isn't directly development
    4k 23k
    4k Topics
    23k Posts
    A
    Btw, v.0.1.1 is out. It is now faster and more functions are in. Also it works on Linux/WSL now.
  • Everything related to designing and design tools

    129 388
    129 Topics
    388 Posts
    T
    Try another pc, maybe the graphics card driver has a problem with it.
  • Everything related to the QA Tools

    78 214
    78 Topics
    214 Posts
    IamSumitI
    Hi, I have developed QML application having two Inputbox and one button with mentioning the ids of each component. When I recording and verifying with Squish tool I am not getting type(waitForObject(..), "") function/API in my script. I want to have text/caption of the button and input text of the both input box from my QML application. The same thing i am getting by running the addressbook example exe with Squish tool as following. startApplication("Addressbook") mouseClick(waitForObjectItem(names.address_Book_Unnamed_Menubar, "File")) mouseClick(waitForObjectItem(names.file_MenuItem, "New")) mouseClick(waitForObject(names.add_ToolbarItem)) type(waitForObject(names.address_Book_Add_Forename_Edit), "sumit") mouseClick(waitForObject(names.address_Book_Add_Surname_Edit), 42, 14, MouseButton.PrimaryButton) type(waitForObject(names.address_Book_Add_Surname_Edit), "Dine") mouseClick(waitForObject(names.address_Book_Add_Email_Edit), 37, 15, MouseButton.PrimaryButton) type(waitForObject(names.address_Book_Add_Email_Edit), "djihf") mouseClick(waitForObject(names.address_Book_Add_Phone_Edit), 29, 5, MouseButton.PrimaryButton) type(waitForObject(names.address_Book_Add_Phone_Edit), "1233") clickButton(waitForObject(names.address_Book_Add_OK_Button)) What need to do further ? Is there anything require to add or missed either on Qt side or Squish side ? Please help.
  • Everything related to learning Qt.

    384 2k
    384 Topics
    2k Posts
    Emilia_QtE
    Hey @Carditus, We have released our Certification Testing Platform with the first test. Read more here: https://www.qt.io/qt-certifications.
  • 2k Topics
    13k Posts
    Kent-DorfmanK
    Posts about the capabilities of QTimer come up every few months. Timer resolution is dependent upon the underlying OS capabilities, and in a time-sharing OS, there will be jitter when small timer intervals are used. The timers should only be used for functions that facilitate smooth user interaction, not critical events with short intervals. I hesitate to mention solid interval limits because it is system dependent, but I dont do anything less than 50ms when I do timers. Within the confines of a time-sharing OS your approach with threads and busy-waits is more appropriate. You can insert a "small" msleep in the loop to destress the cpu, but again, you're competing with other tasks so you are at the mercy of the cpu scheduler. look into realtime scheduler class as that may help, but understand that class requires you to execute as root, and you can starve other tasks by misusing it.
  • 4k Topics
    18k Posts
    H
    这是对应主题下的帖子
  • This is where all the posts related to the Qt web services go. Including severe sillyness.
    1k 10k
    1k Topics
    10k Posts
    SGaistS
    @JonB said in Hitchhiker's Visual Guide to the Qt Forum: @RokeJulianLockhart I am indeed a moderator, so that may make a difference. I do not know what "Ask as question" does! :) It turns a "normal post" to a question that can be marked as solved. This can be useful for example when an old imported topic still gets activity but was marked solved the old way.