- 浏览: 38916 次
- 性别:
- 来自: 北京
最新评论
-
kqy929:
学习了。
最近我也在使用Selenium。
请教,怎么在Ecl ...
使用selenium自动测试环境的搭建 -
rossbu:
Perfect !!! thank you
configure Eclipse Env For Selenium Support
文章列表
1. Strategy Deisgn Pattern
ZH: Comparator 是策略模式(strategy design pattern),就是不改变对象自身,而用一个策略对象(strategy object)来改变它的行为
EN: Comparator is kind of strategy design pattern, that means Object won't change selives anyway, while making user of another object so-called strategy Object to implement the intentio ...
- 2008-09-23 19:05
- 浏览 833
- 评论(0)
1. Class Initialization Order
package com.ross.test.j2ee.exam;
class A {
static {
System.out.print("1");
}
public A() {
System.out.print("2");
}
}
class B extends A {
static {
System.out.print("a");
}
public B() {
System.out.print("b ...
- 2008-09-23 17:04
- 浏览 927
- 评论(0)
Must Integrated Plugins tools
* Myeclipse (charge)
no more to say, just use it www.myeclipseide.com
* Eclipse Web Tools Platform IBM为eclipse贡献的好东东! (free)
这个绝对是一个重量级的J2EE的插件,很多论坛上都有它的介绍,在此也不多说了。只说几个与众不同的地方,它是一个唯一打开JSP,能解释里面的 JAVA,HTML,CSS,JS,TLD的编辑器,也是唯一能支持JAVA里的CTRL+鼠标单击打开相应类,鼠标停住显示JAVADOC的编辑器。 I ...
- 2008-09-23 14:58
- 浏览 1041
- 评论(0)
Selenium介绍
是对WEB站点一个自动化测试的解决方案。
直接在浏览器上运行
支持多种浏览器。
支持多种脚本程序。
通过浏览器的插件能实现录制、回放等功能
Selenium录制功能使用
下载对应的浏览器插件 selenium-IDE.
http://selenium.openqa.org/index.html#Selenium_IDE
Selenium 代理服务的使用
条件:
安装java1.5以上版本
启动:
在window下面加入
java -jar selenium-server ...
- 2008-09-19 14:43
- 浏览 3082
- 评论(1)
1. download PyDev from http://pydev.sourceforge.net/updates/ in Eclipse
(1)Click "Help" -> "Software Updates" -> "Find and Install..."-> "Search for new features to install "
(2) Click botton of "New Remote Site....." -> input "PyDE ...
- 2008-09-19 14:37
- 浏览 2077
- 评论(1)
一、用户登陆进入系统后的系统环境变量:
$HOME 使用者自己的目录
$PATH 执行命令时所搜寻的目录
$TZ 时区
$MAILCHECK 每隔多少秒检查是否有新的信件
$PS1 在命令列时的提示号
$PS2 当命令尚未打完时,Shell 要求再输入时的提示号 ...
- 2008-09-03 18:50
- 浏览 807
- 评论(0)
http://blog.csdn.net/baobao8505/archive/2006/09/21/1258645.aspx
1. Linux 脚本编写基础
1.1 语法基本介绍
1.1.1 开头
程序必须以下面的行开始(必须方在文件的第一行):
#!/bin/sh
符号#!用来告诉系统它后面的参数是用来执行该文件的程序。在这个例子中我们使用/bin/sh来执行程序。
当编辑好脚本时,如果要执行该脚本,还必须使其可执行。
要使脚本可执行:
编译 chmod +x filename 这样才能用./filename 来运行
1.1.2 注释
在进行shell编程时,以#开头的句子表示注释,直到这 ...
- 2008-09-03 18:47
- 浏览 863
- 评论(0)
Ctrl + A Go to the beginning of the line you are currently typing on
Ctrl + E Go to the end of the line you are currently typing on
Ctrl + L Clears the Screen, similar to the clear command
Ctrl + U Clears the line before the cursor position. If you are at the end of the line, clears the entire line.
...
- 2008-08-28 19:33
- 浏览 718
- 评论(0)
In Eclipse select Window > Preferences > Java > Installed JREs.
Click Add.
Browse to the root of the JDK directory (e.g. C:\Program Files\Java\jdk1.5.0_05)
Give the "JRE" a name (e.g. JDK 1.5.0_05)
OK the dialog.
Check the JDK, uncheck the JRE.
OK the dialog.
Your project should au ...
- 2008-08-28 15:39
- 浏览 754
- 评论(0)
我们在实际工作中可能会遇到使用一些sniff的软件去捕获http的包并且分析,并且如果是直接基于socket方式的访问需要直接使用转义字符(特殊字符)来向server端发起请求,下面是一些特殊符号和转义字符的使用,plus一个例子,通过这样的转换我们也可以使用nc等命令向一个端口发出指令.这样服务器端和客户端就能基于http进行传输和解析.
[ is %5b,
] is %5d,
" is %22
& is &
' is '
< is <
> is >
" is &quo ...
- 2008-08-28 15:35
- 浏览 8007
- 评论(0)
有些时候我们在IDE环境下(如:eclipse)去进行目录地删除,会发现本地资源目录会有red !产成,并且svn上地目录删除失败,此时可以利用命令行来操作强制删除目录
svn delete --force --message "drop unused pakcage" --username rossbu --pas
sword **** https://svnserver/repos/svn1/src/tc/project/trunk/HEAD/subproject/src/test/java/com/companyanem/common/tools
PS: http: ...
在一般地工作环境中经常会用到地bash style,每个人可能都不同这里列举地就是我个人地一些偏爱:
################ setting for User's bashrc ###################
export PATH=$PATH:/etc/init.d/ # path extensible
export SV="https://scm1.****.com/repos/svn1" # svn path
export AdminTestBox=/home/ross/AdminTestBox # main box
export JA ...