1

I've a history in the PHP/Symfony world, so I am familiar with using Behat (like Behave) without having to use a full Selenium setup. To achieve this they use a GoutteDriver (written in PHP) instead of driving a real web browser like Chrome or Firefox.

Is it possible to do something similar in Python (specifically, Django) with Behave?

Oliver Lorton
  • 709
  • 1
  • 6
  • 21

1 Answers1

1

This is indeed possible - you can use Splinter. As well as allowing you to drive Chrome or Firefox, it also has drivers that work in the way you describe. For Django, there's a Django driver.

Sam
  • 5,997
  • 5
  • 46
  • 66