0

如何对没有“id”的按钮执行点击操作。

<a class="ui-button altbuttonfix" onclick="mojarra.jsfcljs(document.getElementById('productionreporttoolbar-productionReportToolBarForm'),{'productionreporttoolbar-productionReportToolBarForm-j_idt43':'productionreporttoolbar-productionReportToolBarForm-j_idt43','userId':'11448','reportName':'','statementName':'productionReport.productionReport','token':'','productionReportId':'1000274'},'report');return false" style="" href="#">
      View

它是一种class类型。任何帮助表示赞赏。谢谢你。

4

2 回答 2

0

为什么不只使用类值?我一直用它作为定位器:

Webdriver driver = new FirefoxDriver();
WebElement e = driver.findElement(By.className("ui-button altbuttonfix"));
e.click();
于 2013-04-10T15:41:22.920 回答
0

在这种情况下,您可以使用该类来识别此按钮

css=a.ui-button.altbuttonfix
于 2016-07-22T00:34:41.273 回答