Home > Mobile >  Pytest or unittest for writing Selenium tests?
Pytest or unittest for writing Selenium tests?

Time:11-23

Which framework is better for tests automation with Selenium?

I have experience with pytest, but a lot of articles is using untitest. Is there any reason for that?

CodePudding user response:

Pytest is fine. You can write unit, integration,system level tests using pytest. The difference is what you want to assert in the tests.

  • Related