Skip to content
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

update TestRunners for first_script.en.md #1324

Closed
wants to merge 42 commits into from
Closed
Show file tree
Hide file tree
Changes from 36 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
3 changes: 3 additions & 0 deletions examples/python/tests/getting_started/test_first_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ def test_eight_components():
assert value == "Received!"

driver.quit()


test_eight_components()
GavinHaydy marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -256,16 +256,38 @@ There are multiple options in each language, but here is what we are using in ou

{{< tabpane code=false langEqualsHeader=true >}}
{{< tab header="Java" >}}
// Add instructions
```shell
# install Dependent library
mvn install

# run all case
mvn test

# run FirstScriptTest only
# Modify "**/*Test.java" to "**/FirstScriptTest" add Comment out "<include>**/*Example.java</include>" in pom.xml
GavinHaydy marked this conversation as resolved.
Show resolved Hide resolved
mvn test
```
{{< /tab >}}
{{< tab header="Python" >}}
// Add instructions
```shell
# install Dependent library
pip install -r requirements.txt

# run your tests using below command
python test_first_script.py
````
{{< /tab >}}
{{< tab header="CSharp" >}}
// Add instructions
{{< /tab >}}
{{< tab header="Ruby" >}}
// Add instructions
```shell
# install Dependent library
bundle install

# run your tests using below command
rspec first_script_spec.rb
```
{{< /tab >}}
{{% tab header="JavaScript" %}}
Install Mocha Test runner using below command in your terminal
Expand Down