0

我从来没有使用过 Maven 或 Selenium,所以我有一个非常简单的问题:我遵循了本教程:http ://docs.seleniumhq.org/docs/03_webdriver.jsp

因此,在 mvn clean install 并将我的项目导入 NetBeans 之后(通过 projet/open 项目菜单)。我通过向导(New => Java Main Class)创建了新的主类并构建了我的项目。

构建成功,但是当我想运行我的项目时,它显示“未找到主类”。

为什么?

我的项目文件夹是/user/webtest2/,我的主类文件(Selenium2Example.java)在这个项目的根文件夹中(如 pom.xml)。

4

2 回答 2

1

这太愚蠢了。尽管在 pom.xml 中配置了正确的入口点,但我还是遇到了异常。

就我而言,发生此错误是因为我忘记在主方法参数中提及“string [args]”,

即我写过 - public static void main() --- INCORRECT 而不是 public static void main (String args[]) -- CORRECT

于 2020-12-08T23:44:06.637 回答
0

好的,我已经查看了pom.xml我的 maven webdriver 项目,我认为你应该检查一下:

 <!-- Create JAR manifest with main class, but without Maven descriptor, so clients don't see this file -->
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>2.4</version>
            <configuration>
                <archive>
                    <addMavenDescriptor>false</addMavenDescriptor>
                    <manifest>
                        <mainClass>com.deutscheboerse.test.MyTest</mainClass>
                    </manifest>
                </archive>
            </configuration>
        </plugin>

在 projet 文件夹中,我在包下com.deutscheboerse.test创建了名为的文件(java 类),MyTest该类包含 main 方法。代码片段:

public static void main(String[] args) throws Exception {
    myTest(args[0], args[1], args[2], price);

}

虽然该方法mytest()具有魔力:

public static void myTest(String driver, String login, String password, Price price) throws Exception {
    PerfTests tests = new PerfTests(USED_ENVIRONMENT, driver);

    tests.login(login, password);
    //... and other steps
}

长话短说 检查您是否pom.xml包含主类的路径,并且该类实际上包含主方法

于 2013-05-23T08:39:51.723 回答