~ubuntu-branches/ubuntu/wily/webbrowser-app/wily-proposed

« back to all changes in this revision

Viewing changes to README

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2013-06-05 05:03:05 UTC
  • Revision ID: package-import@ubuntu.com-20130605050305-qgpd9x3s01m06dca
Tags: upstream-0.20daily13.06.05
ImportĀ upstreamĀ versionĀ 0.20daily13.06.05

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
webbrowser-app is a lightweight web browser tailored for Ubuntu,
 
2
based on the Webkit rendering engine and using the Ubuntu UI components.
 
3
 
 
4
 
 
5
= Building =
 
6
 
 
7
The build system uses cmake.
 
8
To compile, simply invoke cmake and then make:
 
9
 
 
10
    $ cmake .
 
11
    $ make
 
12
 
 
13
 
 
14
= Running =
 
15
 
 
16
webbrowser-app can be run from the development branch without the need to
 
17
install any files. Just run:
 
18
 
 
19
    $ ./src/webbrowser-app
 
20
 
 
21
The executable accepts command line switches and parameters. To find out which,
 
22
just run:
 
23
 
 
24
    $ ./src/webbrowser-app --help
 
25
 
 
26
 
 
27
= Unit tests =
 
28
 
 
29
To run the unit tests, you can use the commands below:
 
30
 
 
31
    $ make test
 
32
 
 
33
      - or -
 
34
 
 
35
    $ ctest
 
36
 
 
37
 
 
38
= Automated UI tests =
 
39
 
 
40
webbrowser-app uses autopilot (https://launchpad.net/autopilot) to test its UI.
 
41
To run the tests, you will need to install python-autopilot and libautopilot-qt.
 
42
Then do the following:
 
43
 
 
44
    $ cd tests/autopilot/
 
45
    $ autopilot run webbrowser_app
 
46
 
 
47
You can get a list of all available tests with the following command:
 
48
 
 
49
    $ autopilot list webbrowser_app
 
50