I am trying to move the first steps in web scraping. I read about selenium and seems to me that it fit for what i am looking for. But i have some problems to start. I am following this tutorial selenium getting started and i am trying to compile the first example with my linux ubuntu. I have compiled in this way
javac -classpath selenium-server-standalone-2.20.0.jar Example.java
i have started selenium server with
java -jar selenium-server-standalone-2.20.0.jar
but i can't run Example. This way doesn't works
java Example
and this way too
java -classpath selenium-server-standalone-2.20.0.jar Example
I guess that the grammar is wrong, but where?