我正在使用Selenium WebDriver处理虚拟机。我正在尝试在我工作的机器上运行测试(再次,虚拟),并且我在实例化我的驱动程序的行上得到NoClassDefFoundError:
driver = new FirefoxDriver(ffBinary,ffProfile);
所以,在虚拟机上,我做了一些研究,发现我可以使用RemoteWebDriver。尝试这个后,我仍然得到同样的错误。有什么建议?我觉得这应该和物理盒子一样,但事实并非如此。它在物理机器上完美运行。
堆栈跟踪:
java.lang.NoClassDefFoundError: com/google/common/io/Resources at org.openqa.selenium.firefox.FirefoxProfile.onlyOverrideThisIfYouKnowWhatYouAreDoing(FirefoxProfile.java:123)
at org.openqa.selenium.firefox.FirefoxProfile.<init>(FirefoxProfile.java:86)
at org.openqa.selenium.firefox.FirefoxProfile.<init>(FirefoxProfile.java:79)
at line 63 in my class is where it breaks: File profile = new File(PROFILE); //PROFILE = where FF profile is (63) FirefoxProfile ffProfile = new FirefoxProfile(profile)
答案 0 :(得分:1)