Rubyを使用して自動化テストを行っているこのコードがあります。
<div class="class1 class2 class3 class4" style="padding: 4px;" id="_d4b99a9f-d1c8-4587-94e2-5ee95ebf1f76">
<span class="class5" style="font-weight: bold; text-decoration: underline;">This is new TITLE</span>
<div class="class6" dd:contenttype="TEST CONTENT TYPE" dd:concept="TITLE" id="_7cfd6eed-fa15-42b8-81af-d09bf3cd4460">
<div class="class7">
<div class="class8" dd:contenttype="TEST CONTENT" dd:entityid="0" dd:entityversion="0" id="_1c9125c4-b078-4017-a5ad-c48210e7090b">
<div class="class9 class10" dd:btnfloatingstyle="top-right" dd:entitytexttype="resultval" id="_9c41159a-3a5b-4de1-87d2-e3361bd4d746" contenteditable="true"></div>
</div>
</div>
</div>
</div>
css セレクターと xpath を使用して find_element を試した「This is new TITLE」または「TITLE」のいずれかを使用して要素を検索したいのですが、どれもうまくいかなかったようです。
driver.find_element(:css, "span.class5") or `driver.find_element(:css, "div.class1 class2 class3 class4 span.class5")`
私には何もうまくいかないようでした。何か不足していますか?