I have the following code...
public class first
{
public static void main (String[] args)
{
WebSpec spec = new WebSpec().safari();
spec.safari().open("http://www.google.com"); //opens google.com in Safari
}
}
written in eclipse.
WebSpec is underlined in red giving an error saying "cannot be resolved to be a type"
I assume this is because some of the libraries are not in the right spot?
I have tried many different things.
What do I need to do?