Skip to content

Commit

Permalink
Bump actions/setup-python from 4.6.1 to 4.7.0 (#354)
Browse files Browse the repository at this point in the history
* Bump actions/setup-python from 4.6.1 to 4.7.0

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4.6.1 to 4.7.0.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v4.6.1...v4.7.0)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix tests

* Whoops

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Brandon Wolfe <Wolfe1@gmail.com>
  • Loading branch information
dependabot[bot] and Wolfe1 committed Jul 14, 2023
1 parent 67b8456 commit fdf372e
Show file tree
Hide file tree
Showing 8 changed files with 122 additions and 96 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.6.1
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.6.1
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.6.1
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4.6.1
uses: actions/setup-python@v4.7.0
with:
python-version: 3.8

Expand Down
57 changes: 32 additions & 25 deletions docs/APILibraryDocumentation.html

Large diffs are not rendered by default.

57 changes: 32 additions & 25 deletions docs/GUILibraryDocumentation.html

Large diffs are not rendered by default.

57 changes: 32 additions & 25 deletions docs/SOAPLibraryDocumentation.html

Large diffs are not rendered by default.

19 changes: 10 additions & 9 deletions samples/GUITests.robot
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,18 @@ Test Suite Setup

*** Test Cases ***
Wait for Keywords Test
Wait For And Input Text //input[@name='q'] robotframework
Press Keys //input[@name='q'] RETURN
Wait For And Click Element //a[@href='/robotframework/robotframework']
Wait Until Page Contains Element //div[@id='readme']
Wait For And Click Element //span[contains(text(),'Search or jump to...')]
wait for and input text //input[@id='query-builder-test'] robotframework
press keys //input[@id='query-builder-test'] RETURN
wait for and click element //a[@href='/robotframework/robotframework']
wait until page contains element //div[@id='readme']

Wait for Keywords Test With Password
Go to https://github.com/
Wait For And Input Password //input[@name='q'] robotframework
Press Keys //input[@name='q'] RETURN
Wait For And Click Element //a[@href='/robotframework/robotframework']
Wait Until Page Contains Element //div[@id='readme']
Wait For And Click Element //span[contains(text(),'Search or jump to...')]
wait for and input password //input[@id='query-builder-test'] robotframework
press keys //input[@id='query-builder-test'] RETURN
wait for and click element //a[@href='/robotframework/robotframework']
wait until page contains element //div[@id='readme']

Element Value Should Be Equal and not equal Test
Go to http://www.google.com
Expand Down
10 changes: 6 additions & 4 deletions test/GUI/GUITests.robot
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,18 @@ Test Case Setup
Wait for Keywords Test
[Teardown] Close All Browsers
Test Case Setup
wait for and input text //input[@name='q'] robotframework
press keys //input[@name='q'] RETURN
Wait For And Click Element //span[contains(text(),'Search or jump to...')]
wait for and input text //input[@id='query-builder-test'] robotframework
press keys //input[@id='query-builder-test'] RETURN
wait for and click element //a[@href='/robotframework/robotframework']
wait until page contains element //div[@id='readme']

Wait for Keywords Test With Password
[Teardown] Close All Browsers
Test Case Setup
wait for and input password //input[@name='q'] robotframework
press keys //input[@name='q'] RETURN
Wait For And Click Element //span[contains(text(),'Search or jump to...')]
wait for and input password //input[@id='query-builder-test'] robotframework
press keys //input[@id='query-builder-test'] RETURN
wait for and click element //a[@href='/robotframework/robotframework']
wait until page contains element //div[@id='readme']

Expand Down
10 changes: 6 additions & 4 deletions test/GUI/GUITestsEdge.robot
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,17 @@ Test Case Setup
*** Test Cases ***
Wait for Keywords Test
Go To https://github.com/
wait for and input text //input[@name='q'] robotframework
press keys //input[@name='q'] RETURN
Wait For And Click Element //span[contains(text(),'Search or jump to...')]
wait for and input text //input[@id='query-builder-test'] robotframework
press keys //input[@id='query-builder-test'] RETURN
wait for and click element //a[@href='/robotframework/robotframework']
wait until page contains element //div[@id='readme']

Wait for Keywords Test With Password
Go To https://github.com/
wait for and input password //input[@name='q'] robotframework
press keys //input[@name='q'] RETURN
Wait For And Click Element //span[contains(text(),'Search or jump to...')]
wait for and input text //input[@id='query-builder-test'] robotframework
press keys //input[@id='query-builder-test'] RETURN
wait for and click element //a[@href='/robotframework/robotframework']
wait until page contains element //div[@id='readme']

Expand Down

1 comment on commit fdf372e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass %
21 0 0 21 100

Please sign in to comment.