这是我的按钮链接:
<a class="button" href="#" onclick="ajaxtoelement('include/system.php?mode=begin&location='+getSelectedValue('location')+'&terminallane='+getSelectedValue('terminallane')+'','keyboard')</a>"
我尝试做
driver.findElement(By.xpath("//a[@class='ajaxtoelement('include/system.php?mode=begin&location='+getSelectedValue('location')+'&terminallane='+getSelectedValue('terminallane')]"));
硒为何仍找不到我指定的按钮?
最佳答案
应该通过onclick
而不是class
访问它,一种简单的方法是,
driver.findElement(By.xpath("//a[contains(@onclick, 'onClickValue')]");