-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
29 lines (21 loc) · 904 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Automation testing for HEADPIN project: https://fedorahosted.org/candlepin/wiki/headpin/Headpin
Test use Mozilla's AMO methodology: https://github.com/mozilla/Addon-Tests
Documentation:
http://eanxgeek.github.com/katello_challenge/index.html
Requires:
selenium
mozwebqa==0.7.1
pytest==2.1.3
pytest-xdist==1.6
BeautifulSoup==3.2.0
pytest-mozwebqa==0.7.1
unittestzero
You can run pip-python install -r ./requirements.txt from the root of the project.
So far only selenium standalone testing has been verified:
On Linux, start your selenium server:
$ java -jar /path/to/your/selenium/selenium-serr-standalone-2.19.0 -trustAllSSLCertificates -forcedBrowserMode *firefox
Run tests:
$ cd [project root]
$ export APP_SERVER="https://headpin.example.com/headpin"
$ py.test --browsername=firefox --platform=Linux --browserver=X.Y -q [test to run]
[running all tests to be tested, instructions to follow]