Fetches capability value or None if the capability is not set
(self, name: str)
| 82 | return self |
| 83 | |
| 84 | def get_capability(self, name: str) -> Any: |
| 85 | """Fetches capability value or None if the capability is not set""" |
| 86 | return self._caps[name] if name in self._caps else self._caps.get(f'{APPIUM_PREFIX}{name}') |
| 87 | |
| 88 | def load_capabilities(self: T, caps: Dict[str, Any]) -> T: |
| 89 | """Sets multiple capabilities""" |
no outgoing calls