(self)
| 207 | return len(el) == 1 |
| 208 | |
| 209 | def is_input(self): |
| 210 | el = self.get().find_elements(By.CSS_SELECTOR, ".dash-cell-value") |
| 211 | |
| 212 | return len(el) == 1 and el[0].get_attribute("type") is not None |
| 213 | |
| 214 | def get_text(self): |
| 215 | el = self._get_cell_value() |
no test coverage detected