(server_proc: subprocess.Popen, browser: Chrome)
| 29 | |
| 30 | |
| 31 | def test(server_proc: subprocess.Popen, browser: Chrome): |
| 32 | template.test_output(browser) |
| 33 | time.sleep(2) |
| 34 | template.test_input(browser) |
| 35 | time.sleep(2) |
| 36 | template.save_output(browser, '14.django_multiple_session_impliment.html') |
| 37 | |
| 38 | browser.get('http://localhost:8080/?app=p2&_pywebio_debug=1') |
| 39 | template.test_output(browser, action_delay=1.5) |
| 40 | time.sleep(2) |
| 41 | template.test_input(browser, action_delay=1.5) |
| 42 | |
| 43 | time.sleep(2) |
| 44 | template.save_output(browser, '14.django_multiple_session_impliment.html') |
| 45 | |
| 46 | |
| 47 | def start_test_server(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…