hekra01
hekra01
Hi, Not sure it is a missing deps. Looks more like some issue with qt's moc when used in parallel. Observations when following these steps: * modify build.sh to do...
Hi, Yes no support for QTreeWidget at this time. Maybe it could be worked around by combining some click/tab events, bu t still a workaround. Proper support will require a...
https://github.com/cisco-open-source/qtwebdriver/pull/50
Sure, it is possible. But you'll have to tweak wd_test.gyp so that: * either the headers/libs of you app can be linked with WD: like this: https://github.com/cisco-open-source/qtwebdriver/pull/45 (easier) * or...
Hi, QtWebdriver is not actively maintained anymore and no future release (mac/win/Linux) is planned at this time. For Mac, you can try to build from source using [build_mac.sh](https://github.com/cisco-open-source/qtwebdriver/blob/WD_1.X_dev/build_mac.sh) but this...
If you need to automate QtWebEngine instead of QtWebkit, you ca use QtWebengine's own webdriver. See here: https://github.com/cisco-open-source/qtwebdriver/issues/31 QtWebdriver automates QtWebkit + qml + QtWidget and QtWebkit browser is a...
Hi, Never looked into this. Guess it will require a tool to convert the `.sln` created by `build.bat` into Makefiles.
@pohnee Indeed, there is no support for QQmlApplicationEngine a this time. Maybe for a future release
Preliminary work to support QQmlApplicationEngine in this PR: https://github.com/cisco-open-source/qtwebdriver/pull/28, branch https://github.com/cisco-open-source/qtwebdriver/tree/WIP_QQuickWindow More testing needed, but first test seem ok. @pohnee, If you want you can try this branch. Example of...
Maybe trying with selenium JS injection, and some qml features of QtWebdriver 1-From selenium you can locate a qml element by id see https://github.com/cisco-open-source/qtwebdriver/wiki/QML-Specifics if you define "objectName" of element...