dropdown
当我移到C
元素 时,我需要通过单击“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>