gpt4 book ai didi

java - 在 eclipse for selenium 程序中,错误-在类驱动程序中找不到 main 方法

转载 作者:行者123 更新时间:2023-12-01 10:48:28 27 4
gpt4 key购买 nike

我正在 eclipse 中学习 selenium,但出现以下错误-

错误:在类驱动程序中找不到 Main 方法,请将 main 方法定义为: 公共(public)静态无效主(字符串[]参数)或者 JavaFX 应用程序类必须扩展 javafx.application.Application

我已经在构建路径中添加了selenium jar和selenium独立jar文件,但是错误仍然存​​在,这是代码

 import org.apache.xpath.operations.String;
import org.openqa.selenium.firefox.FirefoxDriver;


public class driver{

public static void main(String[] args)
{
new FirefoxDriver();

}
}

我彻底搜索了,但找不到解决方案,请帮忙

最佳答案

问题出在您的导入中,您不应该使用:

import org.apache.xpath.operations.String;

通过这样做,您可以让编译器使用“org.apache.xpath.operations.String”而不是普通的“java.lang.String”如果删除此导入,它将正常工作。

import org.openqa.selenium.firefox.FirefoxDriver;

public class App {
public static void main(String[] args) {
new FirefoxDriver();
}
}

关于java - 在 eclipse for selenium 程序中,错误-在类驱动程序中找不到 main 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34049457/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com