pyodide/test/test_python.py

18 lines
425 B
Python
Raw Normal View History

2018-03-30 14:51:13 +00:00
import time
def test_init(selenium):
assert 'Python initialization complete' in selenium.logs
assert len(selenium.driver.window_handles) == 1
def test_webbrowser(selenium):
selenium.run("import antigravity")
time.sleep(2)
assert len(selenium.driver.window_handles) == 2
def test_print(selenium):
selenium.run("print('This should be logged')")
assert 'This should be logged' in selenium.logs