mirror of
https://github.com/ysoftdevs/Testa.git
synced 2026-01-11 06:10:24 +01:00
master
Testa
TODO: General info
Building
Run following commands in terminal
$ qmake
$ make
Usage
Testa connects (by default) to ws://localhost:12345.
Testa accepts Actions in following format:
{
"type": "object",
"properties": {
"action": {
"type": "string"
},
"parameters": {
"type": "object",
"properties": {}
}
},
"required": [
"action",
"parameters"
]
}
It can perform following Actions:
Load URL
{
"action": "loadUrl",
"parameters": {
"url": "http://www.ysoft.com"
}
}
Show notification
{
"action": "showNotification",
"parameters": {
"title": "Notification title",
"message": "Notification message"
}
}
Set progress (currently only Mac OS X)
{
"action": "setProgress",
"parameters": {
"value": 0.5
}
}
Description
Languages
C++
60.6%
Objective-C++
26.4%
QMake
13%