-
-
Notifications
You must be signed in to change notification settings - Fork 41
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
1163 extend TealAppDriver$new()
and TealAppDriver$click()
with $wait_for_idle()
calls
#1171
Conversation
TealAppDriver$initialize/new
with wait_for_idle()
callTealAppDriver$new()
and TealAppDriver$click()
with $wait_for_idle()
calls
I think we should change the default value of the private element @vedhav was there a specific rationale to create |
Code Coverage Summary
Diff against main
Results for commit: 13dc24e Minimum allowed coverage is ♻️ This comment has been updated with latest results |
Unit Tests Summary 1 files 28 suites 2m 21s ⏱️ Results for commit 13dc24e. ♻️ This comment has been updated with latest results. |
Ps. I know it was me that suggested the reimplemented |
@averissimo no worries, but the part of adding |
For sure! This will help us avoid a bunch of statements on tests 👍 |
Signed-off-by: André Veríssimo <[email protected]>
Unit Test Performance Difference
Additional test case details
Results for commit 5441cd1 ♻️ This comment has been updated with latest results. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks both of you for the changes! It's a nice improvement for the class. Just felt it will be nice to add this to the doc. Apart from this LGTM.
Thanks guys for taking care of this! |
Close #1163
$wait_for_idle()
calls afterTealAppDrvier$new()
as I extended the method to call$wait_for_idle()
$wait_for_idle()
calls afterapp$click()
as I extended the method to call$wait_for_idle()
$wait_for_idle()
calls afterapp$navigate_teal_tab()
as it is called inside the method alreadyQuestions:
timeout
parameter to initialize that will be passed toself$wait_for_idle()
or add...
inself$wait_for_idle(...)
at the end of the call. So that duringTealAppDriver$new()
you can passtimeout =
.app$navigate_teal_tab
usesprivate$idle_timeout
(self$wait_for_idle(timeout = private$idle_timeout)
). Should we useprivate$idle_timeout
inTealAppDrvier$new
where we call$wait_for_idle()
. Also, should we setprivate$idle_timeout
inTealAppDrvier$new