import time import getpass import requests import json from selenium.webdriver.support.ui import Select from selenium import webdriver from selenium.webdriver.chrome.options import Options from webdriver_manager.chrome import ChromeDriverManager # --headlessだけではOSによって動かない、プロキシが弾かれる、 # CUI用の省略されたHTMLが帰ってくるなどの障害が出ます。 # 長いですが、これら6行あって最強かつどんな環境でも動きますので、必ず抜かさないようにしてください。 # 仮想ブラウザ起動、URL先のサイトにアクセス #driver = webdriver.Chrome(ChromeDriverManager().install()) #browser = webdriver.Chrome() #driver.get("http://2captcha.com/in.php?key=") #driver = webdriver.Chrome() #driver.get('https://www.google.com/') chrome_options = webdriver.ChromeOptions() chrome_options.add_experimental_option("excludeSwitches", ['enable-automation']) driver = webdriver.Chrome(ChromeDriverManager().install(), options=chrome_options) driver.get("http://2captcha.com/in.php?key=") op = chrome_options() op.add_argument("--disable-gpu"); op.add_argument("--disable-infobars") op.add_argument("--disable-extensions"); op.add_argument("--proxy-server='direct://'"); op.add_argument("--proxy-bypass-list=*"); op.add_argument("--start-maximized"); op.add_argument("--headless"); driver = webdriver.Chrome(ChromeDriverManager().install(), options=chrome_options) # JSでtextareaタグのdisplay:noneを削除する driver = webdriver.Chrome(ChromeDriverManager().install(), options=chrome_options) driver.execute_script('var element=document.getElementById("g-recaptcha-response"); element.style.display="";') service_key = 'a658155478a999c6f853060fbb573865' # 2captcha service key google_site_key = '6Ld2sf4SAAAAAKSgzs0Q13IZhY02Pyo31S2jgOB5' # reCAPTCHAのdata-sitekey pageurl = 'https://patrickhlauke.github.io/recaptcha/' url = "http://2captcha.com/in.php?key=" + service_key + "&method=userrecaptcha&googlekey=" + google_site_key + "&pageurl=" + pageurl resp = requests.get(url) if resp.text[0:2] != 'OK': quit('Service error. Error code:' + resp.text) captcha_id = resp.text[3:] fetch_url = "http://2captcha.com/res.php?key="+ service_key + "&action=get&id=" + captcha_id for i in range(1, 10): time.sleep(5) # wait 5 sec. resp = requests.get(fetch_url) if resp.text[0:2] == 'OK': break print('Google response token: ', resp.text[3:]) # textareaにトークンを入力する driver.find_element_by_id('g-recaptcha-response').send_keys(resp.text[3:]) #表示したサイトのスクリーンショットを撮る #browser.save_screenshot('screen.png') #表示した瞬間消えちゃうから幅を持たせておく time.sleep(5) # サイト内から検索フォームを探す。 # Googleでは検索フォームのNameが「q」です。 #el = driver.find_element_by_name("q") # 検索フォームに文字を入力 #el.send_keys('supreme.com') #time.sleep(2) # 検索フォーム送信(Enter) #el.submit() #from bs4 import BeautifulSoup #soup = BeautifulSoup(driver.page_source, features="html.parser") # タイトルをターミナル上に表示 #print(soup.title.string)
python モジュールについて
開発環境python3.8
windows10
powershell
このファイルをpowershellで実行しようとすると
from selenium.webdriver.chrome.options import Options
中略
op = chrome_options()
のこの箇所が
Typeerror:"Options"object is not callableと出てしまいます。
いろいろページからコードを拾ってきてくっつけているのでこれはpython3.8にはないモジュールだということでしょうか。このエラーの原因は何なんでしょうか。
エラー内容
python
1 2Looking for [chromedriver 80.0.3987.106 win32] driver in cache 3File found in cache by path [C:\Users\shota.wdm\drivers\chromedriver\80.0.3987.106\win32\chromedriver.exe] 4 5DevTools listening on ws://127.0.0.1:52954/devtools/browser/75118533-cf06-4f96-bc41-8d0402ab89af 6Traceback (most recent call last): 7 File "selenium_sample4.py", line 24, in <module> 8 op = chrome_options() 9TypeError: 'Options' object is not callable
回答1件
あなたの回答
tips
プレビュー