前提・実現したいこと
VBA x SeleniumBasicにて
https://mightytext.net/
の新規メッセージ作成画面で宛先を二つ以上入力した際に表示される
Gropu/Individuallyプルダウンの Individuallyを選択したいです。
###以下該当部分のHTMLソースです。
<div class="groupSendingDropDown dropdown pull-right"> <a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0)" style="text-decoration:none;" tabindex="-1"><span id="sendToMultipleOption" class="individualSend"> <i class="fa fa-user fa-fw sendGroupOrIndividualIcon"></i> Individually <b class="caret"></b></span> </a> <ul class="dropdown-menu" role="menu" aria-labelledby="dLabel"> <li role="presentation"> <a role="menuitem" tabindex="-1" href="javascript:void(0)" onclick="_cfacbb971f8160dd75fb24de9924f5443d574731('group', true)" data-sendoption="group"> <i class="fa fa-users fa-fw sendGroupOrIndividualIcon"></i> Group</a></li> <li role="presentation"> <a role="menuitem" tabindex="-1" href="javascript:void(0)" onclick="_cfacbb971f8160dd75fb24de9924f5443d574731('individual', true)" data-sendoption="individual"> <i class="fa fa-user fa-fw sendGroupOrIndividualIcon"></i> Individually </a></li> </ul></div>試したこと
driver.findElementByClass(各クラス).AsSelect.selectByIndex(1)
driver.findElementByClass(各クラス).AsSelect.selectBytext("Individually")
を試しましたが動作しませんでした。

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。