SanKolts
SanKolts
code: ``` python more_menu.menu_elements.should(have.css_class('dropdown-list-item-disabled').and_(have.attribute('aria-disabled').value('true'))) ``` raises an error: ``` Reason: AttributeError: 'list' object has no attribute 'get_attribute' ```
Following code ``` python browser.all('.some-random-and-for-sure-is-not-presented-in-a-dom-class').matching(be.present) ``` returns `True` but it should be `False` This leads to situations when `browser.all('.some-random-and-for-sure-is-not-presented-in-a-dom-class').should(be.present)` passes and `browser.all('.some-random-and-for-sure-is-not-presented-in-a-dom-class').should(be.absent)` fails.