0

我需要 watij 来单击sizeDropdown代码的位置请帮助我在 java 中执行此操作。

HTML 代码:

<div class="size-quantity">
    <span class="sizeDropdown">
    </span>
</div>
4

1 回答 1

0
public static void main(String[] args) {
    WebSpec spec = new WebSpec().ie();
    // http://jsfiddle.net/rnFm8/
    spec.open("http://fiddle.jshell.net/rnFm8/show/");

    // find <span> by innerText = "SPAN WAITING FOR CLICK"
    // spec.find.span().with("SPAN WAITING FOR CLICK").click();

    // or by CSS class using JQuery selector
    spec.jquery(".sizeDropdown").click();
}
于 2013-05-01T04:53:57.553 回答