Tdayo
Tdayo

Reputation: 339

I want to download all the images of my boards on pinterest

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

Answers (1)

demouser123
demouser123

Reputation: 4264

You can use

driver.find_element(By.CSS_SELECTOR, "div[data-test-id='login-button']")

Upvotes: 1

Related Questions