Creates a web element with the specified `element_id`.
(self, element_id: str)
| 425 | return value |
| 426 | |
| 427 | def create_web_element(self, element_id: str) -> WebElement: |
| 428 | """Creates a web element with the specified `element_id`.""" |
| 429 | return self._web_element_cls(self, element_id) |
| 430 | |
| 431 | def _unwrap_value(self, value): |
| 432 | if isinstance(value, dict): |