我正在使用Flash網站,即Flash網站內容文本框,我想在該文本框中輸入值
。 我正在使用sikuli-script.jar與java的selenium webdriver。如何使用硒webdriver sikuli自動化閃存java
這裏是我的代碼:
public void AISTest2()
{
WebDriver driver = new FirefoxDriver();
driver.get("url of site");
Screen s = new Screen();
try {
Thread.sleep(20000);
s.click(s.find("c:\\user.png"));
s.type("mytextfieldvalue");
} catch (FindFailed | InterruptedException e) {
e.printStackTrace();
}
}
當我執行這個代碼下面的錯誤來了:
Exception in thread "main" java.lang.UnsatisfiedLinkError:
C:\Users\laxman\AppData\Local\Temp\tmplib\VisionProxy.dll:
Can't find dependent libraries
你能發佈一個完整的[SSCCE](http://sscce.org)嗎? –