Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常とは異なる要素を含むページを使用しています。その中には、xpath、リンク テキスト、または ID ロケーターを使用してクリックできないボタンもあります。
これは、1 つのボタンの html です。
<div class="goog-inline-block goog-custom-button-inner-box">Save & Go Back</div>
この種のボタンやオブジェクトをスクリプトに含めるにはどうすればよいですか?
CSSセレクターを使用できます
driver.find_element_by_css_selector("div.goog-inline-block.goog-custom-button-inner-box").click()
クラスを使用すると言いますが、複合クラス名があるため、うまくいかないと思います。開発者にボタンに ID を付けるよう依頼してください。