Electric WebView is a scriptable WebView for developers.
The WebView uses the QtWebEngine (which is based on Chromium) to render the HTML content. There is also a simple protocol to get data, send commands and listen for events: through Unix Socket, TCP or WebSocket. The window of WebView does not have any UI component what you see in a standard web browser like an address bar, status bar, navigation buttons, etc.
- Web testing
- Browser automated testing done easy.
- Page automation
- Access and manipulate web pages using DOM API.
- Digital Signage
- Display Web content without distractions.
- Kiosk Web Browser
- The users can only interact with a single web application.
Before building Electric WebView you need to install GCC 6, Qt and QtWebEngine 5.6 on the system.
qmake PREFIX=/usr
make
make installThe WebView itself.
Usage: electric-webview [options]
Electric WebView is a scriptable WebView for developers.
Options:
-h, --help Displays this help.
-v, --version Displays version information.
-t, --transport <tcp|unixsocket|websocket> Command Transport Layer to use.
-r, --reverse <ID> Enable reverse mode. The ID is
used to identify your session in
the server.
-s, --script <path> Script to run.
Example:
electric-webview -t unixsocket:/tmp/electric-webviewA utility to interact with the WebView.
Usage: electric-webview-ctl [options] command
Electric WebView is a scriptable WebView for developers.
Options:
-h, --help Displays this help.
-v, --version Displays version information.
-t, --transport <tcp|unixsocket|websocket> Command Transport Layer to use.
Arguments:
command Command to execute. Pass "-" to
read from stdin.
Example:
echo "open maximized" | electric-webview-ctl -t unixsocket:/tmp/electric-webview -This section describes the available transports with their keywords, parameters, and semantics.
unixsocket:<filename>
Listens on using a UNIX domain stream socket for commands.
tcp:<host>:<port>
Listen on : using a TCP/IP connection for commands.
websocket:<host>:<port>
Listen on : using a WebSocket connection for commands.
Electric WebView reads commands from TCP, Unix Socket or WebSocket. Each command starts with the name of a command and is terminated by a newline. Empty line are interpreted as end of connection.
If the command starts with @ the command is marked as getter. See the [Getter commands][#Getter commands]
for defails.
Due to the simplicity of the protocol, it is possible to interact with the WebView
using the command-line utility GNU Netcat. However, there is electric-webview-ctl
utility that can be used to interact with the WebView, so you don't need extra
tools to interact with the WebView.
Simple example using the GNU Netcat utility to demonstrate how simple is the protocol:
echo "open maximized" | nc -U /tmp/electric-webview
echo "load http://github.com" | nc -U /tmp/electric-webviewIn the below example a maximized window is open and the http://github.com is loaded.
See the Scripting section for details on how to use scripts.
Commands starting with @ are marked as getter.
Getter commands might be useful when you want to retrieve data from a Electric WebView instance.
Example:
URL=$(echo "@current_url" | electric-webview-ctl -t unixsocket:/tmp/electric-webview -)
echo "The current URL is $URL"In the below example, the response is "http://github.com".
Note that if you replace @current_url with current_url in the below example, the
response is empty because the command current_url is not marked as getter.
The response of a command may vary according the type of command. If the command is marked as getter, the response only contains the returned data from the command, otherwise it is not a getter command, the response is composed of the command name and returned data, separated by space.
Note that not all commands have a response.
-
load <URL>- Loads the specified
URL.
- Loads the specified
-
stop- Stops loading the document.
-
reload- Reloads the current document.
-
back- Loads the previous document in the list of documents built by navigating links.
-
forward- Loads the next document in the list of documents built by navigating links.
-
open <maximized|fullscreen>- Open the window. If
maximizedis given, the window is open in maximized state, otherwisefullscreenis given, the window is open in fullscreen mode.
- Open the window. If
-
close- Closes the window.
current_url- Returns the URL of the web page currently viewed.
current_title- Returns the title of the web page currently viewed.
screenshot [REGION]- Take a screenshot of the web page currenly viewed and send base64 encoded JPG.
If
[REGION]is given, restrict the screenshot by the given region(x,y,width,height).
- Take a screenshot of the web page currenly viewed and send base64 encoded JPG.
If
-
set_html <string|file> <VALUE>- Sets the content of the web page. If
fileis given, theVALUEis interpreted as a path to a file to load, otherwisestringis given, theVALUEis used to set the content of the web page.
- Sets the content of the web page. If
-
get_html <text|html>- Retrieve the page's content formated as
htmlortext.
- Retrieve the page's content formated as
-
exec_js <string|file> <VALUE>- Run JavaScript code. If
fileis given, theVALUEis interpreted as a path to a file to load, otherwisestringis given, the valueVALUEis executed as JavaScript code.
- Run JavaScript code. If
-
inject_js <WORLD> <INJECTION_POINT> <string|file> <SOURCE>- Injects JavaScript from
SOURCEintoWORLDatINJECTION_POINT. Iffileis given, theSOURCEis interpreted as a path to a file to load, otherwisestringis given, the valueSOURCEis executed as JavaScript code.
Possible values for
WORLD:mainapplicationuser
Possible values for
INJECTION_POINT:document_creationdocument_readydeferred
For detailed information, please refer to Qt documentation
- Injects JavaScript from
subscribe <VALUE>- Subscribe to specified event in
VALUE.
- Subscribe to specified event in
url_changed- This event is fired when the url chages.
title_changed- This event is fired whenever the title changes.
load_started- This event is fired when a page starts loading content.
load_finished- This event is fired when a load of the page has finished.
info_message_raised <MESSAGE>- This event is fired when a JavaScript program tries to print a info
MESSAGEto the console.
- This event is fired when a JavaScript program tries to print a info
warning_message_raised <MESSAGE>- This event is fired when a JavaScript program tries to print a warning
MESSAGEto the console.
- This event is fired when a JavaScript program tries to print a warning
error_message_raised <MESSAGE>- This event is fired when a JavaScript program tries to print a error
MESSAGEto the console.
- This event is fired when a JavaScript program tries to print a error
user_activity <IDLE_TIME>- This event is fired when the user interacts with the input system through
keystrokes or mouse clicks. The
IDLE_TIMEis the milliseconds since the last user activity.
- This event is fired when the user interacts with the input system through
keystrokes or mouse clicks. The
-
idle_time- Returns the idle time from the last user activity in milliseconds.
-
block_user_activity <true|false>- If
trueis given, prevents the user activity with the page untilfalseis given.
- If
-
exec_cmd <sync|async> <COMMAND> [ARGUMENTS]- Run a
COMMANDon the system with the givenARGUMENTS. Ifasyncis given, the command will be started detached and the output will be ignored, otherwisesyncis given, the execution is blocked until the command has finished and the output will be send in the response message.
- Run a
-
quit [code]- Tells the application to exit with a return
code.
- Tells the application to exit with a return
First of all, you must run the HTTP server, which is invoked with the following command:
$PREFIX/share/electric-webview/httpserver.py
Where
$PREFIXis the prefix where you installed Electric WebView.
See HTTP API Endpoints for a list of all available endpoints.
You can use scripts with Electric WebView loading the following Shell script library file:
$PREFIX/share/electric-webview/shellscript.sh
Where
$PREFIXis the prefix where you installed Electric WebView.
Before loading the library you must set ELECTRIC_WEBVIEW_TRANSPORT environment
variable to the transport layer you are using in your instance of Electric WebView.
Example:
#!/bin/sh
ELECTRIC_WEBVIEW_TRANSPORT=unixsocket:/tmp/electric-webview
. /usr/share/electric-webview/shellscript.sh
open maximized
load http://github.com