(self, selector="body")
| 1418 | return self.loop.run_until_complete(self.page.get_window()) |
| 1419 | |
| 1420 | def get_text(self, selector="body"): |
| 1421 | return self.find_element(selector).text_all |
| 1422 | |
| 1423 | def get_title(self): |
| 1424 | """Returns the title of the current web page.""" |