我是 selenium webdriver 中的这个 PhantomjsDriver 的新手。我需要在没有 GUI 的服务器中运行我的 selenium 脚本。请任何人都可以告诉我如何实现这一目标。我需要从如何配置 Phantomjs 驱动程序、在服务器中的使用和休息开始。下面是我通过 GUI 运行的 selenium 代码,现在我必须在没有 GUI 的服务器中运行这些案例。我必须做哪些修改才能完成上述任务。
public static void main(String[] args) throws IOException{
login =args[0];
user = args[1];
pwd = args[2];
TestListenerAdapter tla = new TestListenerAdapter();
TestNG testng = new TestNG();
testng.setOutputDirectory(args[3]);
testng.setTestClasses(new Class[] {
CreateMultiRecordTest.class, UpdateMultiRecordTest.class,
DeleteMultiRecordTest.class
});
testng.addListener(tla);
testng.run();