I have a webview library object (named webview1) placed on the .pyui canvas. It's from the Pythonista gui editor library. I access this with the code below.
How do I access this same webview object if it is placed as a subview in a scrollview named scrollview1?
import ui
view1 = ui.load_view()
w1 = view1['webview1']
w1.load_url('http://www.yahoo.com')
view1.present()