Skip to content

update TestRunners for first_script.en.md #1324

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 42 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
fcb0dfa
docs:updated grid/_index.zh-cn.md
GavinHaydy Oct 17, 2022
908e017
Revert "docs:updated grid/_index.zh-cn.md"
GavinHaydy Oct 17, 2022
4761936
docs:translated document grid/_index.zh-cn.md into chinese
GavinHaydy Oct 17, 2022
9527b18
Merge branch 'trunk' into trunk
GavinHaydy Oct 17, 2022
a6669e4
Merge remote-tracking branch 'upstream/trunk' into trunk
GavinHaydy Feb 23, 2023
45cecd9
Merge remote-tracking branch 'upstream/trunk' into trunk
GavinHaydy Feb 24, 2023
39c6738
Create CNAME
GavinHaydy Feb 24, 2023
d80dfb8
Update CNAME
GavinHaydy Feb 24, 2023
0efe32c
Update CNAME
GavinHaydy Feb 24, 2023
42e5329
docs:delete CNAME
GavinHaydy Feb 24, 2023
7b91f58
docs:update ruby,javascript,kotlin code for file_upload.en.md,file_up…
GavinHaydy Feb 24, 2023
4d6e13c
docs:update ruby,javascript,kotlin code for file_upload.en.md,file_up…
GavinHaydy Feb 24, 2023
ab0cabc
Revert "docs:updated grid/_index.zh-cn.md"
GavinHaydy Oct 17, 2022
1edda87
docs:translated document grid/_index.zh-cn.md into chinese
GavinHaydy Oct 17, 2022
16f1e77
Create CNAME
GavinHaydy Feb 24, 2023
a21662e
Update CNAME
GavinHaydy Feb 24, 2023
7a4a0e7
Update CNAME
GavinHaydy Feb 24, 2023
553880c
docs:delete CNAME
GavinHaydy Feb 24, 2023
86215e8
docs:update ruby,javascript,kotlin code for file_upload.en.md,file_up…
GavinHaydy Feb 24, 2023
ed42e7b
docs:update ruby,javascript,kotlin code for file_upload.en.md,file_up…
GavinHaydy Feb 24, 2023
dbb889a
Merge remote-tracking branch 'origin/trunk' into trunk
GavinHaydy Feb 28, 2023
cced6ce
docs:update TestRunners in first_script.en.md
GavinHaydy Mar 1, 2023
705880a
Revert "docs:updated grid/_index.zh-cn.md"
GavinHaydy Oct 17, 2022
b038a08
docs:translated document grid/_index.zh-cn.md into chinese
GavinHaydy Oct 17, 2022
308d00f
Create CNAME
GavinHaydy Feb 24, 2023
248ab9a
Update CNAME
GavinHaydy Feb 24, 2023
a265ae2
Update CNAME
GavinHaydy Feb 24, 2023
1bb5861
docs:delete CNAME
GavinHaydy Feb 24, 2023
997fc1e
Revert "docs:updated grid/_index.zh-cn.md"
GavinHaydy Oct 17, 2022
27e912b
docs:translated document grid/_index.zh-cn.md into chinese
GavinHaydy Oct 17, 2022
eb851a8
Create CNAME
GavinHaydy Feb 24, 2023
b914e7d
Update CNAME
GavinHaydy Feb 24, 2023
e67ec5a
Update CNAME
GavinHaydy Feb 24, 2023
3932bcf
docs:delete CNAME
GavinHaydy Feb 24, 2023
b806dc6
docs:update TestRunners in first_script.en.md
GavinHaydy Mar 1, 2023
aa08841
Merge remote-tracking branch 'origin/trunk' into trunk
GavinHaydy Mar 1, 2023
b1f2406
docs:update TestRunners in first_script.en.md and Correction error
GavinHaydy Mar 1, 2023
85098ae
Merge remote-tracking branch 'upstream/trunk' into trunk
GavinHaydy Mar 1, 2023
9468ece
Merge remote-tracking branch 'upstream/trunk' into trunk
GavinHaydy Mar 6, 2023
78376f7
Merge remote-tracking branch 'upstream/trunk' into trunk
GavinHaydy Mar 7, 2023
83af0b3
docs:update TestRunners in first_script.en.md and Replace mocha in …
GavinHaydy Mar 9, 2023
4e9ebd5
Merge remote-tracking branch 'upstream/trunk' into trunk
GavinHaydy Mar 21, 2023
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 @@ -255,33 +255,52 @@ Many of the code examples in this documentation can be found in our example repo
There are multiple options in each language, but here is what we are using in our examples:

{{< tabpane langEqualsHeader=true >}}
{{< tab header="Java" >}}
// Add instructions
{{% tab header="Java" text=true %}}
Install Dependent library
```shell
mvn install
```
Run your tests using below command
```shell
mvn test
```

{{< /tab >}}
{{< tab header="Python" >}}
// Add instructions
{{% tab header="Python" text=true %}}
Install Dependent library
```shell
pip install -r requirements.txt
```
Run your tests using below command
```shell
pytest
````
{{< /tab >}}
{{< tab header="CSharp" >}}
{{% tab header="CSharp" text=true %}}
// Add instructions
{{< /tab >}}
{{< tab header="Ruby" >}}
// Add instructions
{{% tab header="Ruby" text=true %}}
Install Dependent library
```shell
bundle install
```
Run your tests using below command
```shell
rspec
```
{{< /tab >}}
{{% tab header="JavaScript" text=true %}}
Install Mocha Test runner using below command in your terminal

Install Dependent library
```shell
npm install mocha
npm i
```

and run your tests using below command

Run your tests using below command
```shell
mocha firstScript.spec.js
npm test
```

{{< /tab >}}
{{< tab header="Kotlin" >}}
{{% tab header="Kotlin" text=true %}}
// Add instructions
{{< /tab >}}
{{< /tabpane >}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,38 +256,58 @@ you will want to execute your Selenium code using test runner tools.
Many of the code examples in this documentation can be found in our example repositories.
There are multiple options in each language, but here is what we are using in our examples:

{{< tabpane text=true langEqualsHeader=true >}}
{{< tab header="Java" >}}
// Add instructions
{{< tabpane langEqualsHeader=true >}}
{{% tab header="Java" text=true %}}
Install Dependent library
```shell
mvn install
```
Run your tests using below command
```shell
mvn test
```

{{< /tab >}}
{{< tab header="Python" >}}
// Add instructions
{{% tab header="Python" text=true %}}
Install Dependent library
```shell
pip install -r requirements.txt
```
Run your tests using below command
```shell
pytest
````
{{< /tab >}}
{{< tab header="CSharp" >}}
{{% tab header="CSharp" text=true %}}
// Add instructions
{{< /tab >}}
{{< tab header="Ruby" >}}
// Add instructions
{{% tab header="Ruby" text=true %}}
Install Dependent library
```shell
bundle install
```
Run your tests using below command
```shell
rspec
```
{{< /tab >}}
{{% tab header="JavaScript" text=true %}}
Install Mocha Test runner using below command in your terminal

Install Dependent library
```shell
npm install mocha
npm i
```

and run your tests using below command

Run your tests using below command
```shell
mocha firstScript.spec.js
npm test
```

{{< /tab >}}
{{< tab header="Kotlin" >}}
{{% tab header="Kotlin" text=true %}}
// Add instructions
{{< /tab >}}
{{< /tabpane >}}


## Next Steps

Take what you've learned and build out your Selenium code.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,39 +254,58 @@ você deverá executar seu código usando feramentas para executar testes.
Muitos exemplos de código encontrado nessa documentação podem ser encontrado no nosso repositório de exemplos.
Existem múltiplas opções em cada linguagem, mas esta será qual usaremos em nossos exemplos:

{{< tabpane langEqualsHeader=true >}}
{{% tab header="Java" text=true %}}
Install Dependent library
```shell
mvn install
```
Run your tests using below command
```shell
mvn test
```

{{< tabpane text=true langEqualsHeader=true >}}
{{< tab header="Java" >}}
// Add instructions
{{< /tab >}}
{{< tab header="Python" >}}
// Add instructions
{{% tab header="Python" text=true %}}
Install Dependent library
```shell
pip install -r requirements.txt
```
Run your tests using below command
```shell
pytest
````
{{< /tab >}}
{{< tab header="CSharp" >}}
{{% tab header="CSharp" text=true %}}
// Add instructions
{{< /tab >}}
{{< tab header="Ruby" >}}
// Add instructions
{{% tab header="Ruby" text=true %}}
Install Dependent library
```shell
bundle install
```
Run your tests using below command
```shell
rspec
```
{{< /tab >}}
{{% tab header="JavaScript" text=true %}}
Install Mocha Test runner using below command in your terminal

Install Dependent library
```shell
npm install mocha
npm i
```

and run your tests using below command

Run your tests using below command
```shell
mocha firstScript.spec.js
npm test
```

{{< /tab >}}
{{< tab header="Kotlin" >}}
{{% tab header="Kotlin" text=true %}}
// Add instructions
{{< /tab >}}
{{< /tabpane >}}


## Próximos Passos

Use o que você aprendeu e construa o seu proprio código Selenium.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,38 +273,58 @@ you will want to execute your Selenium code using test runner tools.
Many of the code examples in this documentation can be found in our example repositories.
There are multiple options in each language, but here is what we are using in our examples:

{{< tabpane text=true langEqualsHeader=true >}}
{{< tab header="Java" >}}
// Add instructions
{{< tabpane langEqualsHeader=true >}}
{{% tab header="Java" text=true %}}
Install Dependent library
```shell
mvn install
```
Run your tests using below command
```shell
mvn test
```

{{< /tab >}}
{{< tab header="Python" >}}
// Add instructions
{{% tab header="Python" text=true %}}
Install Dependent library
```shell
pip install -r requirements.txt
```
Run your tests using below command
```shell
pytest
````
{{< /tab >}}
{{< tab header="CSharp" >}}
{{% tab header="CSharp" text=true %}}
// Add instructions
{{< /tab >}}
{{< tab header="Ruby" >}}
// Add instructions
{{% tab header="Ruby" text=true %}}
Install Dependent library
```shell
bundle install
```
Run your tests using below command
```shell
rspec
```
{{< /tab >}}
{{% tab header="JavaScript" text=true %}}
Install Mocha Test runner using below command in your terminal

Install Dependent library
```shell
npm install mocha
npm i
```

and run your tests using below command

Run your tests using below command
```shell
mocha firstScript.spec.js
npm test
```

{{< /tab >}}
{{< tab header="Kotlin" >}}
{{% tab header="Kotlin" text=true %}}
// Add instructions
{{< /tab >}}
{{< /tabpane >}}


## 接下来的步骤

利用你所学的知识,
Expand Down