When I execute the code below, I cannot press the OK button.
Do you have the same symptoms?
iPhone X(iOS12.4.1)
Pythonista 3 v.3.2(320000)
import ui
main = ui.ScrollView(frame=(0, 0, 375, 812))
main.content_size = (375, 812)
wv = ui.WebView(frame=(0, 0,*main.content_size))
wv.load_url('https://www.google.co.jp/')
main.add_subview(wv)
main.present('fullscreen')
wv.evaluate_javascript('alert("123");')