6👍
✅
What makes the tests slow is open and close the browser on each test. A way to improve the tests time is open the browser once. You can do it using setUpClass and tearDownClass.
Source:stackexchange.com
6👍
What makes the tests slow is open and close the browser on each test. A way to improve the tests time is open the browser once. You can do it using setUpClass and tearDownClass.