Selenium_java-1 set up the enviroment

Selenium rc preparation

Down load two jar documents

  1. selenium-2.40.0 zip
  2. selenium-server.jar

Add them as external jar in eclipse

Try it now.cmd in windows.

1,cd to the direction jar is

2, java -jar selenium-server.jar  server will up.

more will coming..

ref add:http://blog.csdn.net/kash_chen007/article/details/40586067

http://www.cnblogs.com/puresoul/p/3483055.html

时间: 2024-10-04 15:21:49

Selenium_java-1 set up the enviroment的相关文章

idea的环境变量设置(Enviroment variables)

其实在idea中叫Enviroment variables是不合适的,这个是eclipse的叫法,对应在idea中叫做Path variables. 因为这个名字的原因,每次要设置spring.profiles.active都要在idea中找很久,所以干脆截图出来写个随笔,下次记不住了,翻开看下.

Maven编译失败,提示No compiler is provided in this enviroment. Perhaps you are running on a JRE rathen a JDK ?

用maven对项目进行构建时,提示No compiler is provided in this enviroment. Perhaps you are running on a JRE rathen a JDK ?错误,如下图 出现此错,只需要将JRE home指定为jdk(jdk目录本身自带jre)安装目录,再次用maven构建项目即可,如下图示 更为详细的步骤可以参考如下博客:https://blog.csdn.net/lslk9898/article/details/73836745 原

Ubuntu OS应用Runtime Enviroment

在这篇文章中.我们将介绍Ubuntu OS的Runtime Environment.在文章"App confinement: Security policy for click packages"中,我们看见它里面有介绍一个应用的runtime环境.这里,我们通过一个样例来显示一个应用的runtime环境究竟是如何的. 在这里我们能够參阅我曾经的文章"在Ubuntu上的C++及QML混合编程",我们下载文章中的例程: bzr branch lp:~liu-xiao-

Java Web (0) -- Install Develop Enviroment

1. Install JDK http://blog.csdn.net/sonnet123/article/details/9169741 如果原先存在老的jdk版本或者默认的jdk版本,上面的jdk信息可能不是最新版本,则需要 [plain] view plaincopy 安装 java alternative ---jdk # update-alternatives --install /usr/bin/java java /usr/java/jdk1.7.0_25/bin/java 60

Selenium_java coding

1)public class HelloWorld { // class 是类的意思 // 类名指的是class后面这个词,这个词是我们起的名 public static void main(String[] args) { // public 公共的 // static 静态的 // void 无返回值的 // main 主函数,程序的入口 // 双斜杠表示注释 System.out.println("Hello World"); // ln是line的缩写,是行 System.ou

OpenCL+minGW64+windows8.1 enviroment

            minGW的编译执行命令:                1)wrong           网上所说的:比如 gcc  -W -m64 main.c  -o  main.exe -I"C:/Program Files (x86)/Intel/OpenCL SDK/6.1/include"   -L"C:/Program Files (x86)/Intel/OpenCL SDK/6.1/lib/x86"   -lOpenCl         

installing the matplotlib via pip in the enviroment dos

目录 一.The installing of matplotlib 三.Histogram The result of first section: The result of the second section: 一.The installing of matplotlib matplotlib is matrix plotting library. pip installing matlotlib 二.The Result Of Installing The Unknown Word Th

enviroment linux jdk and git and maven

#java_home export JAVA_HOME=/usr/local/java/jdk1.8.0_211 export JRE_HOME=$JAVA_HOME/jre export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar export PATH=$PATH:$JAVA_HOME/bin #git export PATH="/usr/local/git/bin:$PATH" #maven #maven

C#:多进程开发,控制进程数量

正在c#程序优化时,如果多线程效果不佳的情况下,也会使用多进程的方案,如下: System.Threading.Tasks.Task task=System.Threading.Tasks.Task.Factory.StartNew( (object mystate) => { Process process = Process.Start("AutoCollectMrMultipleProcess.exe", mystate.ToString()); process.WaitF