Why not yielding the driver object insted of using global?
@sujithkumar-mg2yb Жыл бұрын
Can explain how to prepare testsuites and run the testsuites
@PrasanthQAArchitect Жыл бұрын
Need to do in different video. i will cover in this series
@emmanuelalder9052 Жыл бұрын
Hi Prasanth, I'm a new subscriber to your channel. Brillant videos, I'm enjoying and learning a lot. In the explanation about scope, you passed module. I've never used module, I always use session. I just wanted to know the difference between using module and session? Thank you. Great content.
@PrasanthQAArchitect Жыл бұрын
Function fixtures (scope='function') run once per test function. Class fixtures (scope='class') run once per test class. Session fixtures (scope='session') run once for the entire test session.
@MrNakash83 Жыл бұрын
Hello, How can I implement pool of users that shared between all tests run (tests are running on 4 agents). I am trying to implement this pool of users such that same pool of users can provide users to each test case and put users back to the pool after test completed. Thanks :)
@anubebe3 Жыл бұрын
Hi Sir, I'm unable to use package scope while request.cls.driver is used. What to do? Pls help
@PrasanthQAArchitect Жыл бұрын
Function fixtures (scope='function') run once per test function. Class fixtures (scope='class') run once per test class. Session fixtures (scope='session') run once for the entire test session.