[使用Selenium / Python时,我需要等待/暂停,直到:为style="display:none;"
显示<div id="notification"..</div>
单击按钮后,将显示以下内容(正在加载..。]
<div id="notification" class="notification_info" style="opacity: 1; display: inline-block;">Loading...</div>
然后将数据集加载到网页中后,Loading ...消失(通过更改display:none
),并且存在以下内容:
<div id="notification" class="notification_info" style="display: none;">Loading...</div>
如何进行(检查或等待style="display: none;"
的值)?
因为带有<divs>
的页面中有很多style=display
,所以我需要同时等待id
的div
和style display
。
如果您要等待元素发生,可以使用此代码。