Skip to content

Commit 47f6f05

Browse files
authored
german translation for install libaries (#238) [deploy site]
1 parent 1b25ebd commit 47f6f05

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

docs_source_files/content/selenium_installation/installing_selenium_libraries.de.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,15 @@ title: "Bibliotheken installieren"
33
weight: 1
44
---
55

6-
{{% notice info %}}
7-
<i class="fas fa-language"></i> Diese Seite wird von Englisch
8-
auf Deutsch übersetzt. Sprichst Du Deutsch? Hilf uns die Seite
9-
zu übersetzen indem Du uns einen Pull Reqeust schickst!
10-
{{% /notice %}}
11-
12-
First you need to install the Selenium bindings for your automation project.
13-
The installation process for libraries depends on the language you choose to use.
6+
Zu Beginn ist es notwendig das die Selenium Bindings für Dein
7+
Automationsprojekt installiert werden. Der Installationsprozess ist von der
8+
gewählten Programmiersprache abhängig.
9+
1410

1511
## _Java_
16-
Installation of Selenium libraries for Java can be done using Maven.
17-
Add the _selenium-java_ dependency in your project pom.xml:
12+
Die Installation der Selenium Bibliotheken für Java kann mit Hilfe von
13+
Maven erfolgen. Füge in Deinem Projekt in die pom.xml die _selenium-java_
14+
dependecy hinzu.
1815

1916
```xml
2017
<dependency>
@@ -24,12 +21,13 @@ Add the _selenium-java_ dependency in your project pom.xml:
2421
</dependency>
2522
```
2623

27-
The _selenium-java_ dependency supports running your automation
28-
project with all Selenium supported browsers. If you want to run tests
29-
only in a specific browser, you can add the dependency for that browser
30-
in your _pom.xml_ file.
31-
For example, you should add following dependency in your _pom.xml_
32-
file to run your tests only in Firefox:
24+
Mit der _selenium-java_ dependency ist es möglich Tests laufen zu lassen
25+
in allen von Selenium unterstützen Browsern. Falls Du Test nur in einem
26+
spezifischen Browser ausführen möchtest, ist es möglich auch nur die
27+
dependecy für den gewählten Browser in der _pom.xml_ hinzuzufügen.
28+
29+
Wenn Du zum Beispiel Tests nur in Firefox ausführen möchtest, füge folgende
30+
dependecy in die _pom.xml_ hinzu:
3331

3432
```xml
3533
<dependency>
@@ -39,8 +37,8 @@ file to run your tests only in Firefox:
3937
</dependency>
4038
```
4139

42-
In a similar manner, if you want to run tests only in Chrome,
43-
you should add the following dependency:
40+
Analog wenn Du die Tests nur in Chrome ausführen möchtest, musst Du folgende
41+
dependecy hinzufügen:
4442

4543
```xml
4644
<dependency>
@@ -51,21 +49,22 @@ you should add the following dependency:
5149
```
5250

5351
## _Python_
54-
Installation of Selenium libraries for Python can be done using pip:
52+
Die Installation der Selenium Bibliotheken for Phython can mittels _pip_ erfolgen:
5553

5654
```shell
5755
pip install selenium
5856
```
5957

60-
Alternatively you can download the [PyPI source archive](https://pypi.org/project/selenium/#files)
61-
(selenium-x.x.x.tar.gz) and install it using _setup.py_:
58+
Alternativ kannst Du den [PyPI Quellcode](https://pypi.org/project/selenium/#files)
59+
(selenium-x.x.x.tar.gz) downloaden und diesen mittels _steup.py_ installieren:
60+
6261

6362
```shell
6463
python setup.py install
6564
```
6665

6766
## _C#_
68-
Installation of Selenium libraries for C# can be done using NuGet:
67+
Die Installation der Selenium Bibliotheken für C# kann mittels _NuGet_ erfolgen:
6968

7069
```shell
7170
# Using package manager
@@ -75,19 +74,20 @@ dotnet add package Selenium.WebDriver
7574
```
7675

7776
## _Ruby_
78-
Installation of Selenium libraries for Ruby can be done using gem:
77+
Die Selenium Bibliotheken für Ruby können mittels _gem_ installiert werden:
7978

8079
```shell
8180
gem install selenium-webdriver
8281
```
8382

8483
## _JavaScript_
85-
Installation of Selenium libraries for JavaScript can be done using npm:
84+
Die Installation der Selenium Bibliotheken für JavaScript kann mit npm durchgeführt werden:
8685

8786
```shell
8887
npm install selenium-webdriver
8988
```
9089

9190
## _Kotlin_
92-
Due to missing native language bindings for Kotlin, you have to use the Java Bindings, e.g. with maven [Java](#java)
91+
Da es noch keine Implementierung für Kotlin gibt, müssen die Java Bibliothken verwendet werden,
92+
diese können analg zu [Java](#java) mittels maven eingebunden werden.
9393

0 commit comments

Comments
 (0)