I have previously created a project and I have imported it into Eclipse, but I also completely reinstalled my windows and saved that specific program. In that program, I am using Selenium and Chrome Webdriver. I installed them both and added the project into my library, but Eclipse won't allow me to import Selenium and because of that it is throwing numerous exceptions. I imported a list as well but that class seemed to work...
I have tried to import it like this:
import org.openqa.selenium.*;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.interactions.Actions;
However, Eclipse says: "the import org.openqa cannot be resolved"
Why is this happening and how can I resolve it?