Push pending updates to the connected client. Args: *controls: Specific controls to update. When omitted, updates this page object.
(self, *controls: Control)
| 314 | return views[-1] |
| 315 | |
| 316 | def update(self, *controls: Control) -> None: |
| 317 | """ |
| 318 | Push pending updates to the connected client. |
| 319 | |
| 320 | Args: |
| 321 | *controls: Specific controls to update. When omitted, updates this |
| 322 | page object. |
| 323 | """ |
| 324 | |
| 325 | if len(controls) == 0: |
| 326 | self.page.update(self) |
| 327 | else: |
| 328 | self.page.update(*controls) |
| 329 | |
| 330 | def add(self, *controls: Control) -> None: |
| 331 | """ |
no outgoing calls
no test coverage detected