Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ invalid `TLS Certificate` is used while navigating
during a session.

If the capability is set to `false`, an
[insecure certificate error](//developer.mozilla.org/de/docs/Web/WebDriver/Errors/InsecureCertificate)
[insecure certificate error](//developer.mozilla.org/en/docs/Web/WebDriver/Errors/InsecureCertificate)
will be returned as navigation encounters any domain
certificate problems. If set to `true`, invalid certificate will be
trusted by the browser.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,24 +35,17 @@ URLを介して新しいページに移動する場合、デフォルトでは

## platformName

This identifies the operating system at the remote-end,
fetching the `platformName` returns the OS name.
これにより、リモートエンドのオペレーティングシステムが識別され、 `platformName` を取得するとOS名が返されます。

In cloud-based providers,
setting `platformName` sets the OS at the remote-end.
クラウドベースのプロバイダーでは、 `platformName` を設定すると、リモートエンドのOSが設定されます。

## acceptInsecureCerts

This capability checks whether an expired (or)
invalid `TLS Certificate` is used while navigating
during a session.
この機能は、セッション中のナビゲーション中に、期限切れ(または)無効な `TLS証明書` が使用されているかどうかを確認します。

If the capability is set to `false`, an
[insecure certificate error](//developer.mozilla.org/de/docs/Web/WebDriver/Errors/InsecureCertificate)
will be returned as navigation encounters any domain
certificate problems. If set to `true`, invalid certificate will be
trusted by the browser.
機能が `false` に設定されている場合、ナビゲーションでドメイン証明書の問題が発生すると、
[insecure certificate error](//developer.mozilla.org/ja/docs/Web/WebDriver/Errors/InsecureCertificate) が返されます。
`true` に設定すると、無効な証明書はブラウザーによって信頼されます。

All self-signed certificates will be trusted by this capability by default.
Once set, `acceptInsecureCerts` capability will have an
effect for the entire session.
すべての自己署名証明書は、デフォルトでこの機能によって信頼されます。
一度設定すると、 `acceptInsecureCerts` Capabilityはセッション全体に影響します。
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ invalid `TLS Certificate` is used while navigating
during a session.

If the capability is set to `false`, an
[insecure certificate error](//developer.mozilla.org/de/docs/Web/WebDriver/Errors/InsecureCertificate)
[insecure certificate error](//developer.mozilla.org/ko/docs/Web/WebDriver/Errors/InsecureCertificate)
will be returned as navigation encounters any domain
certificate problems. If set to `true`, invalid certificate will be
trusted by the browser.
Expand Down
56 changes: 22 additions & 34 deletions docs_source_files/content/introduction/types_of_testing.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,28 @@ title: "テストの種類"
weight: 3
---

{{% notice info %}}
<i class="fas fa-language"></i> Page being translated from
English to Japanese. Do you speak Japanese? Help us to translate
it by sending us pull requests!
{{% /notice %}}

### Acceptance testing
This type of testing is done to determine if a feature or system
meets the customer expectations and requirements.
This type of testing generally involves the customer's
cooperation or feedback, being a validation activity that
answers the question:
>Are we building the **_right_** product?.

For web applications, the automation of this testing can be done
directly with Selenium by simulating user expected behaviour.
This simulation could be done by record/playback or through the
different supported languages as explained in this documentation.
Note: Acceptance testing is a subtype of **_functional testing_**,
which some people might also refer to.

### Functional testing
This type of testing is done to determine if a
feature or system functions properly without issues. It checks
the system at different levels to ensure that all scenarios
are covered and that the system does _what's_
supposed to do. It's a verification activity that
answers the question:
>Are we building the product **_right?_**.

This generally includes: the tests work without errors
(404, exceptions...), in a usable way (correct redirections),
in an accessible way and matching its specifications
(see **_acceptance testing_** above).
### 受け入れテスト
このタイプのテストは、機能またはシステムが顧客の期待と要件を満たしているかどうかを判断するために行われます。
このタイプのテストには通常、顧客の協力またはフィードバックが関与します。
下記質問に答えることで確認することができます。
> **_正しい_** 製品を作っていますか?

Webアプリケーションの場合、ユーザーの予想される動作をシミュレートすることで、
このテストの自動化をSeleniumで直接実行できます。
このシミュレーションは、このドキュメントで説明されているように、記録/再生によって、
またはサポートされているさまざまな言語によって実行できます。
注:受け入れテストは **_機能テスト_** のサブタイプであり、一部の人はこれにも言及する場合があります。

### 機能テスト
このタイプのテストは、機能またはシステムが問題なく正常に機能するかどうかを判断するために行われます。
システムをさまざまなレベルでチェックして、すべてのシナリオがカバーされていること、
およびシステムが実行すべきことを実行していることを確認します。
下記質問に答えることで確認することができます。
>製品を **_正しく_** 作っていますか?

これは通常以下を含みます。
テストがエラーなし(404、例外...)、使用可能な方法(正しいリダイレクト)で機能する、
利用しやすく、仕様に一致します(上記の **_受け入れテスト_** を参照)。

Webアプリケーションの場合、期待されるリターンをシミュレートすることにより、このテストの自動化をSeleniumで直接実行できます。
このシミュレーションは、このドキュメントで説明されているように、記録/再生またはサポートされているさまざまな言語で実行できます。
Expand Down