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

Add expected conditions 1827 #1865

Merged
merged 24 commits into from
Apr 14, 2024
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5a6735c
Sketching out initial ideas for test suite on expected conditions
emanlove Jun 9, 2023
583c9e6
Added dynamic and delayed title change as initial test framework for
emanlove Nov 11, 2023
fc60e23
Merge branch 'master' into add-expected-conditions-1827
emanlove Nov 11, 2023
2b10abf
Initial (working) prototype of wait for.. keyword
emanlove Nov 11, 2023
eb49c98
Bumped number of library keywords by one
emanlove Nov 11, 2023
129e9b0
Moved previous expected condition tests out of current test suite
emanlove Nov 11, 2023
36e7da3
Adding another sample tests and modifying keyword behavior
emanlove Nov 11, 2023
48376f7
Added sample test case where an expected timeout would occur
emanlove Nov 11, 2023
3083459
added timeout argument to keyword wait_for_expected_condition
yuriverweij Nov 15, 2023
754e793
Merge pull request #3 from yuriverweij/feature/add_expected_condition…
emanlove Nov 22, 2023
98d8f89
Some intial parsing and validation for parsing condition argument
emanlove Nov 22, 2023
7ad5296
Basic working keyword for wait
emanlove Jan 18, 2024
b022031
Added test case for capitals within expected condition name
emanlove Jan 19, 2024
d23700e
Added example test where expected condition expected "locator" tuple
emanlove Jan 21, 2024
7bdca3c
Added keyword documentation for new `Wait For Expected Condition` key…
emanlove Mar 26, 2024
bd05dfd
Merge branch 'master' into add-expected-conditions-1827
emanlove Mar 26, 2024
fd751bb
Fix Firefox unit tests
emanlove Apr 2, 2024
204ceda
Reduced the timeout on the expected timeout within expected conditions
emanlove Apr 2, 2024
e1a4f4c
Expanded selenium versions upto 4.19.0
emanlove Apr 3, 2024
f17f8f0
Fix acceptance tests
emanlove Apr 5, 2024
de1a4fb
Append results to zip file
emanlove Apr 5, 2024
8db00db
Added selenium version and browser name to archive
emanlove Apr 14, 2024
a0e241d
Upload only failed artifacts
emanlove Apr 14, 2024
cc41bc1
Updated some expected log messages in chrome tests
emanlove Apr 14, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
python-version: [3.8, 3.11] # 3.12, pypy-3.9
rf-version: [5.0.1, 6.1.1, 7.0]
selenium-version: [4.14.0, 4.15.2, 4.16.0] #4.17.0, 4.18.0
selenium-version: [4.14.0, 4.15.2, 4.16.0, 4.17.2, 4.18.1, 4.19.0]
Copy link
Member

Choose a reason for hiding this comment

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

It's becoming quite a long list again.

browser: [firefox, chrome, headlesschrome] #edge

steps:
Expand Down
Loading