挑戰:在Python Selenium 中按一下具有複雜度>(>
<code class="html"><div class="b_div"> <div class="button c_button s_button" onclick="submitForm('mTF')"> <input class="very_small" type="button"> <div class="s_image"></div> <span>Search</span> </div> <div class="button c_button s_button" onclick="submitForm('rMTF')" style="margin-bottom: 30px;"> <input class="v_small" type="button"> <span>Reset</span> </div> </div></code>
使用者在定位和點擊具有以下HTML 結構的按鈕時遇到了挑戰:
driver.find_element_by_class_name('s_image').click()
但是,他們收到了NouchElementionSuchElemention 錯誤。
解決方案:
<code class="python">driver.find_element_by_css_selector('.button.c_button.s_button').click()</code>
以上是如何使用 Python Selenium 點選具有巢狀 HTML 結構的複雜按鈕?的詳細內容。更多資訊請關注PHP中文網其他相關文章!