DEV Community

Cover image for Getting Started With Browser Automation Testing in Python

Getting Started With Browser Automation Testing in Python

Erik on September 27, 2019

Developers have unit tests to test atomic functionality and integration tests to test system interoperability. Web developers have to take it a ste...
Collapse
 
dowenb profile image
Ben Dowen

Have you ever looked into using SeleniumBase? It's a test framework that brings selenium and pytest together with a bunch of features ready to go. It may not be as flexible as rolling your own, but I find it a lower bar to get started.

seleniumbase.com/

Collapse
 
erikwhiting88 profile image
Erik

I haven't heard of it. I'll have to check it out, thanks!