dropdown
要素に移動するときに、「C」をクリックして選択する必要がありますC
。
x-combo-list-item x-combo-selected
このコードをコードで使用して要素をクリックすると、そのクラスが変更されます
drivefindElement(By.className("x-combo-list-item x-combo-selected")).click();
それは例外をスローします
org.openqa.selenium.IllegalLocatorException: Compound class names are not supported.
Consider searching for one class name and filtering the results.
この要素をクリックする方法を教えてください。
html コード .. Firebug から
<--div id="xyz" class="x-combo-list-inner" style="width: 253px; height: 105px;">
<--div class="x-combo-list-item" ext:qtip="">A<--/div>
<--div class="x-combo-list-item" ext:qtip="">B<--/div>
<--div class="x-combo-list-item x-combo-selected" ext:qtip="">C<--/div>
<--div class="x-combo-list-item" ext:qtip="">D<--/div>
<--div class="x-combo-list-item" ext:qtip="">E<--/div>
<--/div>