(self, x, y)
| 53 | self.load_webview() |
| 54 | self.box.append(self.webview) |
| 55 | |
| 56 | def look(self, x, y): |
| 57 | if not self.loaded: |
| 58 | return |
| 59 | script = "model_proxy.focus({x}, {y});" |
| 60 | script = script.format(x=x, y=y) |
| 61 | self.webview.evaluate_javascript(script, len(script)) |
| 62 | |
| 63 | def update_area(self): |
nothing calls this directly
no outgoing calls
no test coverage detected