如何在网络驱动程序中通过htmlunitdriver
通过firefoxdriver
发送文字?以下代码适用于htmlunitdriver
,但不适用于driver.switchTo().frame(driver.findElement(By.xpath("//iframe[@id='scayt_0']")));
WebElement elem = driver.findElement(By.tagName("body"));
elem.click();
elem.sendKeys("djkds");
driver.switchTo().defaultContent();
。
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
startActivityForResult(Intent.createChooser(intent, "Select Picture"),
PICK_IMAGE);
有什么建议吗?