PythonでPixivに自動ログインを行いたいのですが、ログインできません。
ユーザーID入力とパスワード入力は出来るのですが、最後のログインボタンを押すという処理がうまくいきません。
特に、エラーによる処理停止は起きてはいません。
from datetime import datetime from bs4 import BeautifulSoup from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains import os import time if __name__ == "__main__": webfilepath = "webdriverのパス" url = "https://accounts.pixiv.net/login?return_to=https%3A%2F%2Fwww.pixiv.net%2F&lang=ja&source=pc&view_type=page" loginuser = "ログインID(メールアドレス)" loginpass = "ログインパスワード" driver = webdriver.Chrome(executable_path=webfilepath) driver.get(url) element = driver.find_element_by_xpath("//input[@autocomplete='username']") element.send_keys(loginuser) element = driver.find_element_by_xpath("//input[@autocomplete='current-password']") element.send_keys(loginpass) element = element.find_element_by_xpath("//button[@type='submit']").click time.sleep(30)
回答、宜しくお願いします
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。