Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Automatic Screenshots of your Django web application with py.test and Selenium

Automatic Screenshots of your Django web application with py.test and Selenium

Raphael Michel

October 25, 2017
Tweet

More Decks by Raphael Michel

Other Decks in Programming

Transcript

  1. PY.TEST # content of test_sample.py def inc(x): return x +

    1 def test_answer(): assert inc(3) == 5 $ py.test ======= test session starts ======== collected 1 item test_sample.py F ======= FAILURES ======== _______ test_answer ________ ... test_sample.py:5: AssertionError ======= 1 failed in 0.12 seconds ========
  2. PY.TEST FIXTURES import pytest @pytest.fixture def smtp(): import smtplib return

    smtplib.SMTP("smtp.gmail.com", 587, timeout=5) def test_ehlo(smtp): response, msg = smtp.ehlo() assert response == 250 assert 0 # for demo purposes