Skip to content

Commit 3a85923

Browse files
kzhiratadiemol
andauthored
Add Japanese translation of "Legacy Migrating from RC to WebDriver and HTML runner" (#243)
- legacy_docs/html-runner.ja.md - legacy_docs/migrating_from_rc_to_webdriver.ja.md Co-authored-by: Diego Molina <[email protected]>
1 parent 74da35f commit 3a85923

File tree

2 files changed

+108
-157
lines changed

2 files changed

+108
-157
lines changed

docs_source_files/content/legacy_docs/html-runner.ja.md

Lines changed: 15 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,22 @@
11
---
2-
title: "HTML runner"
2+
title: "HTMLランナー"
33
weight: 3
44
---
55

6-
{{% notice info %}}
7-
<i class="fas fa-language"></i> ページは英語から日本語へ訳されています。
8-
日本語は話せますか?プルリクエストをして翻訳を手伝ってください!
9-
{{% /notice %}}
106

11-
_Selenium HTML-runner_ allows you to run Test Suites from a
12-
command line. Test Suites are HTML exports from Selenium IDE or
13-
campatible tools.
7+
_Selenium HTMLランナー_ を使用すると、コマンドラインからテストスイートを実行できます。
8+
テストスイートは、Selenium IDEまたは互換性ツールからのHTMLエクスポートです。
149

10+
## 共通情報
1511

16-
## Common information
12+
* geckodriver / firefox / selenium-html-runnerのリリースの組み合わせが重要です。
13+
どこかにソフトウェア互換性マトリックスがあるかもしれません。
14+
* selenium-html-runnerはテストスイートのみを実行します(テストケースではなく、Monitis Transaction Monitorからのエクスポートなど)。
15+
必ずこれを順守してください。
16+
* DISPLAYのないLinuxユーザーの場合-仮想ディスプレイでhtml-runnerを起動する必要があります(xvfbを検索)。
1717

18-
* Combination of releases of geckodriver / firefox /
19-
selenium-html-runner matters. There might be a software
20-
compatibility matrix somewhere.
21-
* selenium-html-runner runs only Test Suite (not Test Case - what
22-
is for example an export from Monitis Transaction Monitor). Be
23-
sure you comply with this.
24-
* For Linux users with no DISPLAY - you need to start html-runner
25-
with Virtual display (search for xvfb)
26-
27-
## Example Linux environment
28-
Install / download following software packages:
18+
## Linux環境の例
19+
次のソフトウェアパッケージをインストール/ダウンロードします。
2920

3021
```shell
3122
[user@localhost ~]$ cat /etc/redhat-release
@@ -38,7 +29,7 @@ java-1.8.0-openjdk-1.8.0.151-1.b12.el7_4.x86_64
3829
java-1.8.0-openjdk-headless-1.8.0.151-1.b12.el7_4.x86_64
3930
```
4031

41-
Test Suite example:
32+
テストスイートの例
4233

4334
```html
4435
[user@localhost ~]$ cat testsuite.html
@@ -59,11 +50,10 @@ Test Suite example:
5950
```
6051

6152

62-
## How to run selenium-html-runner headless
53+
## selenium-html-runnerをヘッドレスで実行する方法
6354

64-
Now, the most important part, an example of how to run the
65-
selenium-html-runner! Your experience might vary depending on software
66-
combinations - geckodriver/FF/html-runner releases.
55+
さて、最も重要な部分、selenium-html-runnerの実行方法の例!
56+
経験によってソフトウェアの組み合わせ、- geckodriver / FF / html-runnerリリースによって異なる場合があります。
6757

6858
```shell
6959
xvfb-run java -Dwebdriver.gecko.driver=/home/mmasek/geckodriver.0.18.0 -jar selenium-html-runner-3.7.1.jar -htmlSuite "firefox" "https://YOUR-BASE-URL" "$(pwd)/testsuite.html" "results.html" ; grep result: -A1 results.html/firefox.results.html

0 commit comments

Comments
 (0)