要在关闭放置WebView的窗口后获取WebKit.WebView()的URL。因此,我需要知道如何获取WebView的打开的URL。 Python版本是2.7.15rc1。
这是我的代码,在其中创建包含WebView的窗口:
coords = self.builder.get_object("Tbo_coords").get_text()
GObject.threads_init()
maps = Gtk.Window()
maps.set_size_request(1000, 600)
osm = WebKit.WebView()
link = "https://www.openstreetmap.org/search?query=" + str(coords)
osm.open(link)
maps.add(osm)
maps.show_all()
Gtk.main()
是的,保存到链接的URL与我最后想得到的不一样,因为OSM链接是通过在卡上移动来改变的。
问候, 时代男子