Reputation: 65205
Is it possible to use selenium with qt c++ ?
Seems like there are no official support from selenium for C++?
http://seleniumhq.org/download/
Upvotes: 6
Views: 11784
Reputation: 729
There is a Webdriver for Qt applications: https://github.com/cisco-open-source/qtwebdriver
Upvotes: 2
Reputation: 1
Please look library https://github.com/linotex/quelenium. I hope its help
Upvotes: -1
Reputation: 6285
You might be able to use json wire protocol to communicate with webdriver server within Qt/C++ application, but consider using some scripting language instead. For example Python is pretty easy to learn and has webdriver bindings.
http://code.google.com/p/selenium/wiki/JsonWireProtocol
http://code.google.com/p/selenium/wiki/PythonBindings
Upvotes: 1