1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
from time import sleep
import webview
from .util import assert_js, run_test
class Api:
def test(self):
return 'JS Api is working too'
def test_start():
api = Api()
window = webview.create_window('Relative URL test', 'assets/test.html', js_api=api)
run_test(webview, window, assert_func)
def assert_func(window):
sleep(1)
html_result = window.evaluate_js('document.getElementById("heading").innerText')
assert html_result == 'Hello there!'
css_result = window.evaluate_js(
'window.getComputedStyle(document.body, null).getPropertyValue("background-color")'
)
assert css_result == 'rgb(255, 0, 0)'
js_result = window.evaluate_js('window.testResult')
assert js_result == 80085
assert_js(window, 'test', 'JS Api is working too')
|