Append items to the page `body`. Shortcut for `page.body.append(*items)`.
(self, *items)
| 1435 | document.title = value |
| 1436 | |
| 1437 | def append(self, *items): |
| 1438 | """ |
| 1439 | Append items to the page `body`. |
| 1440 | |
| 1441 | Shortcut for `page.body.append(*items)`. |
| 1442 | """ |
| 1443 | self.body.append(*items) |
| 1444 | |
| 1445 | def find(self, selector): |
| 1446 | """ |
no outgoing calls