Python Selenium でボタンのクリック操作をしたところ、
以下のようなエラーになってしまいます。
Python3
1Traceback (most recent call last): 2 File "test.py", line 53, in <module> 3 button.click() 4AttributeError: 'list' object has no attribute 'click'
これは要素の選択が間違っているのでしょうか?
Python3
1from webdriver_manager.chrome import ChromeDriverManager 2from selenium.webdriver.support.select import Select 3import time 4 5driver = webdriver.Chrome(ChromeDriverManager().install()) 6driver.get('https://website.com/signup') 7time.sleep(1) 8 9button = driver.find_elements_by_class_name("continue") 10button.click() 11time.sleep(1)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。