Reputation: 339
I am now trying to download all the images on the board using selenium.
However, I am unable to log in. How should I click on this and enter my ID:Pass?
<div data-test-id="login-button">
Upvotes: 0
Views: 114
Reputation: 4264
You can use
driver.find_element(By.CSS_SELECTOR, "div[data-test-id='login-button']")
Upvotes: 1