I am trying to click the login button with webdriver
<a class="login-btn" href="javascript:;" data-bind="click:loginSection.loginClick">
<span class="btn-text">Login</span>
</a>
My code:
submit=driver.find_element_by_css_selector('a.login-btn').click()
or try this code:
submit=driver.find_element_by_class_name('login-btn').click()
Neither of these is working, need some advice. Thanks in advance
Error:
NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":"a.login-btn"}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…