我目前正在测试我的应用程序的 GUI,我想知道是否可以将焦点设置为 WebElement ?
我正在使用 Selenium 2.0 和 webdriver。
所以我正在寻找类似的东西:driver.findElement(xxxx).setfocus();
谢谢你。
编辑:我已经测试过那种棘手的事情
// getting the element WebElement
eSupplierSuggest = driver.findElement(By.xpath("..."));
//get le location and click
Point location = eSupplierSuggest.getLocation();
new Actions(driver).moveToElement(eSupplierSuggest, location.x, location.y).click();
//or
//directly perform
new Actions(driver).moveToElement(eSupplierSuggest).click().perform();
我在某处红色单击焦点元素,但在我的情况下,没有任何效果。哈哈
PS:这是该原始帖子的子问题单击建议框,webdriver