File tree 1 file changed +4
-9
lines changed
1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change 1
- danny_mk, yeah. the best thing you could do is make a branch for the selenium work that doesn't have any other commits in it for other stuff
2
- scrottie git branch selenium; git checkout selenium
3
- scrottie git cherry-pick b8596fd10da910254150db02dc7336bda5a25c89 # to bring over the one commit that you did
4
- scrottie then to push that: git push origin selenium
5
-
6
-
7
1
Install WebGUI using to the instructions at: https://github.com/plainblack/webgui/tree/WebGUI8
8
2
9
3
Create the following settings in your test site webgui.conf file:
@@ -12,7 +6,7 @@ Create the following settings in your test site webgui.conf file:
12
6
"server" : "localhost",
13
7
"port" : "4444",
14
8
"browser" : "firefox",
15
- "webgui_url" : "http://your_webgui_test_site_url "
9
+ "webgui_url" : "http://whatever-your-site-is.com "
16
10
},
17
11
18
12
Make sure you select all the defaults (do not change the "admin" user password)
@@ -32,8 +26,9 @@ Running the Selenium Server (run in a separate command line/window)
32
26
33
27
GOTCHAS ---
34
28
If running the selenium tests in the IDE make sure to change:
35
- <link rel="selenium.base" href="http://webgui.dbash.com" /> TO: <link rel="selenium.base" href="http://your_webgui_test_site_url" />
36
-
29
+ <link rel="selenium.base" href="http://webgui.dbash.com" /> TO: <link rel="selenium.base" href="http://whatever-your-site-is.com" />
30
+ perl -pi -e 's/webgui.dbash.com/whatever-your-site-is.com/' *.html
31
+
37
32
Selenium server not running (this may vary according to the values in your webgui.conf file):
38
33
Error requesting http://localhost:4444/selenium-server/driver/:
39
34
500 Can't connect to localhost:4444 (Connection refused)
You can’t perform that action at this time.
0 commit comments