Lettuce es una herramienta que nos permite usar el paradigma BDD en python. Si lo integramos con su webdriver para Selenium, podemos realizar tests usando el lenguaje natural sin una línea de código.
El código usando Lettuce sería algo parecido a:
Código: Seleccionar todo
Given I go to “http://localhost/user/login”
When I fill in “username” with “admin”
And I fill in “password” with “adminpassw”
And I press the button "Login"
Then browser url should contain “/user/panel/”
And I should see “Welcome User: admin”