文章列表
selenium打不开firefox及网络代理
selenium有时候可能打不开firefox,在运用中,我也碰到了这个问题,查找了很多方面的原因,都无法解决,因为我们公司是网络代理,
我怀疑有这方面的原因,因为每次启动firefox时,都是一个非常干净的firefox,所以就用CMD启动server,在其中加了网络代理,发现还是不行,仍然打不开给定的页面,再次查找后,发现,
公司的测试环境需要添加例外,只加代理是不行的,所以,最后把firefox的default文件拷贝到工程与src同目录下,
然后:
RemoteControlConfiguration rcConfig = new ...
例:tcpdump host 172.16.29.40 and port 4600 -X -s 500
tcpdump采用命令行方式,它的命令格式为:
tcpdump [ -adeflnNOpqStvx ] [ -c 数量 ] [ -F 文件名 ]
[ -i 网络接口 ] [ -r 文件名] [ -s snaplen ]
[ -T 类型 ] [ -w 文件名 ] [表达式 ]
1. tcpdump的选项介绍
-a 将网络地址和广播地址转变成名字;
-d 将匹配信息包的代码以人们能够理解的汇编格式给出;
-dd ...
public void test() throws Exception {
class TestThread extends Thread{
public TestThread(String name) {
super(name);
}
public synchronized void run() {
for(int i = 0;i<5;i++){
for(long k= 0; k <100000000;k++);
...
Selenium RC 定位到新窗口
- 博客分类:
- selenium
String[] titles = selenium.getAllWindowTitles();
selenium.selectWindow("title="+titles[titles.length-1]);
取某个元素的特定属性值
java.lang.String getAttribute(java.lang.String attributeLocator)
eg. selenium.getAttribute("xpath=//img[@name='picName']@style")
例如:
如对于一段html代码:
<a target="newwindow" href="http://blog.163.com/yang_jianli/blog/url_address">注册</a> ...
Iperf was developed by NLANRDAST as a modern alternative for measuring maximum TCP and UDP bandwidth performance. Iperf allows the tuning of various parameters and UDP characteristics. Iperf reports bandwidth, delay jitter, datagram loss.
Iperf使用方法与参数说明
参数说明
-s 以 ...
selenium testng
- 博客分类:
- 优化testng测试报告
<project name="TestSuite" basedir=".">
<property name="src.dir" value="src"/>
<property name="lib.dir" value="lib"/>
<property name="test.dir" value="test"/>
<property name=& ...