There is a select tag with required option (required="required
):
<select name="doc[]" id="doc" multiple="multiple" size="18" required="required">
<option value="1">А.2 Проверочный перечень для ФИ плана сертификации ПО</option>
<option value="2">А.3 Проверочный перечень для ФИ плана разработки ПО</option>
...
The purpose of this option is to disallow the pushing of commit button(s) if nothing is selected in a multiselect select tag. It looks like:
I need to check if some alert/notification/popup is displayed using Selenium + Python. The alert is not a standard window that could be seen in HTML and/or switch to, i.e. nothing happens with source HTML, the element cannot be inspected, it's displayed only for 5 seconds and then disappears.
It looks the same in different browsers (first picture, above, is from Chrome, same from Opera), this is from Firefox:
MS Edge does not display any messages.
Also monitored using Chrome/Firefox devtools - nothing happens in the console, it's also not an animation (chrome F12 - dots menu - more tools - animations).
So how can I check for the presence of such kind of notifications?