Run a test suite with different parameters? #10160
Unanswered
GalacticBard08
asked this question in
Q&A
Replies: 1 comment
-
Code with two parameters:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
There is a set of UI tests in one class:
How do I run this class with different parameters for one test session in turn? Parameterization of the function is not suitable, since this test will be performed independently and only after that it will move on to the next test
I found this solution:
my_list = [1,2,3]
It is executed alternately, which is what I need:
But when the second parameter is added, chaos begins:
I also need a conclusion in order:
And further. How to implement it?
Beta Was this translation helpful? Give feedback.
All reactions