回答編集履歴

1

回答を補足しました

2015/10/30 08:15

投稿

dojikko
dojikko

スコア3939

test CHANGED
@@ -1,3 +1,35 @@
1
1
  cronをつかう
2
2
 
3
3
  Windowsならタスクスケジューラをつかう
4
+
5
+
6
+
7
+ 補足です
8
+
9
+ 実行するコマンドは
10
+
11
+ [http://docs.seleniumhq.org/docs/05_selenium_rc.jsp](http://docs.seleniumhq.org/docs/05_selenium_rc.jsp)あたりに
12
+
13
+ > Run Selenese Directly Within the Server Using -htmlSuite
14
+
15
+ > You can run Selenese html files directly within the Selenium Server by passing the html file to the server’s command line. For instance:
16
+
17
+
18
+
19
+ > java -jar selenium-server-standalone-<version-number>.jar -htmlSuite "*firefox"
20
+
21
+ > "http://www.google.com" "c:\absolute\path\to\my\HTMLSuite.html"
22
+
23
+ > "c:\absolute\path\to\my\results.html"
24
+
25
+
26
+
27
+ と書いてあるので
28
+
29
+
30
+
31
+ > java -jar selenium-server-standalone-<version-number>.jar -htmlSuite " *firefox/ *chrome / *iexplore " <テスト対象のURL> <テストスイートファイル> <テスト結果ファイル>
32
+
33
+ こんな感じでいけるんじゃないかと
34
+
35
+