Creates a web element with the specified `element_id`.
(self, element_id: str)
| 416 | return value |
| 417 | |
| 418 | def create_web_element(self, element_id: str) -> WebElement: |
| 419 | """Creates a web element with the specified `element_id`.""" |
| 420 | return self._web_element_cls(self, element_id) |
| 421 | |
| 422 | def _unwrap_value(self, value): |
| 423 | if isinstance(value, dict): |