roman-isakov
roman-isakov
**Idea:** Since method below always returns string values, I'd like to suggest to cast input values to strings or add type hints, since error logs: > webelement.py: def get_attribute(self, name)...
just like we've got this: ` @property def first(self): """ A human-readable alias to .element(0) or [0] """ return self[0]` could you please consider implementing **last** ?
example: `ss('').should(have.text('').each)` hint: **PyCharm 2023.3.4 (Professional Edition)** ``` Expected type 'Condition[Collection]' (matched generic type 'Condition[E]'), got 'Condition[Iterable[Element]]' instead ```  **PyCharm 2024.1.3 (Professional Edition)** `Expected type 'Condition[Collection]' (matched generic type...