执行java代码时我得到的错误。请帮助我解决这个问题

时间:2018-05-04 07:29:52

标签: java selenium webdriver jira alm

代码:

package demo1;

public class helloworld {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        // Create a new instance of the Firefox driver
                WebDriver driver = new FirefoxDriver();

                //Launch the Online Store Website
                driver.get("http://www.store.demoqa.com");

                // Print a Log In message to the screen
                System.out.println("Successfully opened the website www.Store.Demoqa.com");

                //Wait for 5 Sec
                Thread.sleep(5000);

错误

线程“main”中的异常java.lang.Error:未解决的编译问题:     WebDriver无法解析为某种类型     FirefoxDriver无法解析为类型

at demo1.helloworld.main(helloworld.java:8)

2 个答案:

答案 0 :(得分:0)

导入以下两行:

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;  

假设已经考虑了所有先决条件。

答案 1 :(得分:0)

您可以在类路径中使用selenium-java.x.jar。 编译并运行......