单击python selenium中的按钮

mwg9r5ms  于 2022-12-18  发布在  Python
关注(0)|答案(1)|浏览(168)

html codemy code如何点击按钮在此html代码IM使用 selenium .
我想在我的管理面板写一个循环。

r3i60tvu

r3i60tvu1#

首先,该按钮没有id='button'
没有看到该网站,你可以尝试这样做:

login_button = driver.find_element(By.TAG_NAME, 'button')
login_button.click() # this assumes that there are no other buttons on the page as find_element finds the first button on the page

login_button = driver.find_element(By.CLASS_NAME, 'btn')
login_button.click() # this assumes that there are no other elements with the `btn` class to click

相关问题