挑战:在 Python Selenium 中单击具有复杂 HTML 结构的按钮
问题:
用户在定位和单击具有以下 HTML 结构的按钮时遇到了挑战:
<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>
尝试的解决方案:
用户尝试使用各种 Selenium 选择器,例如:
但是,他们收到了 NoSuchElementException 错误。
解决方案:
要解决此问题,用户需要删除 CSS 选择器中类名称之间的空格。正确的选择器是:
<code class="python">driver.find_element_by_css_selector('.button.c_button.s_button').click()</code>
以上是如何使用 Python Selenium 单击具有嵌套 HTML 结构的复杂按钮?的详细内容。更多信息请关注PHP中文网其他相关文章!