Browser doesn't close after running first test data to run second test data #9426
-
Hello everyone, The code is as follows:
confttest.py
can anyone help me why my code after reading data from csv the browser doesn't get closed after every test case |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
As you use a class scope fixture, this is the expected and correct behaviour If you want per test teardown, please consider the function scope, which is the default |
Beta Was this translation helpful? Give feedback.
As you use a class scope fixture, this is the expected and correct behaviour
If you want per test teardown, please consider the function scope, which is the default