← Back to team overview

sikuli-driver team mailing list archive

[Question #264885]: [error] ResourceLoaderBasic: checkLibsDir: libs dir contains wrong arch for amd64

 

New question #264885 on Sikuli:
https://answers.launchpad.net/sikuli/+question/264885

Hi,

I am getting error on running my class

Error:
[error] ResourceLoaderBasic: checkLibsDir: libs dir contains wrong arch for amd64
[error] ResourceLoaderBasic: check: libs dir is empty, has wrong content or is outdated
[action] ResourceLoaderBasic: check: Please wait! Trying to extract libs to: C:/selenium-2.45.0/libs
[error] ResourceLoaderBasic: check: Fatal Error 102: not possible to empty libs dir
[error] Terminating SikuliX after a fatal error(102)! Sorry, but it makes no sense to continue!
If you do not have any idea about the error cause or solution, run again
with a Debug level of 3. You might paste the output to the Q&A board.


My code:
package sikulifinalpackage;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.sikuli.script.FindFailed;
import org.sikuli.script.Screen;

public class sikuliTest {
	public static void main(String args[]) throws FindFailed,InterruptedException
	{
	WebDriver driver=new FirefoxDriver();
	System.getProperty("sun.arch.data.model");
	  driver.get("http://172.17.251.94/ecommunications_enu/start.swe";);
	  //System.out.println("Running");
	  Screen sc= new Screen();
	  //System.out.println("Running 1");
	  Thread.sleep(10000);
	  //System.out.println("Running 2");
	  sc.find("login.png");
	  //System.out.println("Running 3");
	  sc.click("login.png");
}
}

My PC bit is 64 and my JVM bit is 32.



-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.