摘要: <input type="button" /> 定义可点击的按钮,但没有任何行为。如果你不写javascript 的话,按下去什么也不会发生。 button 类型常用于在用户点击按钮时启动 JavaScript 程序. <input type="submit" /> 定义提交按钮。这样的按钮用户点击 阅读全文
posted @ 2017-04-10 15:49 留白* 阅读(700) 评论(0) 推荐(0) 编辑
摘要: Eclipse Junit Maven project: 项目中对代码进行了修改,运行的结果还是修改代码之前的结果,感觉没有重新编译class文件,工具条中“Project>Build Automatically”是勾选上的, 在控制台使用mvn clean install(或者mvn clean指 阅读全文
posted @ 2017-04-07 12:26 留白* 阅读(1733) 评论(0) 推荐(0) 编辑
摘要: 前提:该项目中已经将原有的Source folder删除掉。 右键单击普通文件》Build path》Use as Source Folder。 阅读全文
posted @ 2017-03-30 17:38 留白* 阅读(2309) 评论(0) 推荐(1) 编辑
摘要: 本操作只限于已经安装了Chrome的Ubuntu系统: Step 1: sudo apt-get update Step 2: sudo apt-get install google-chrome-stable 完成上述两个指令后,Chrome便更新好了,此时需要重启Chrome,注明:如果已在桌面 阅读全文
posted @ 2017-03-28 10:39 留白* 阅读(2980) 评论(0) 推荐(0) 编辑
摘要: 压缩大小超过1M的图片:http://optimizilla.com/ 压缩大小低于1M的图片:https://kraken.io/web-interface 阅读全文
posted @ 2017-03-22 09:32 留白* 阅读(199) 评论(0) 推荐(0) 编辑
摘要: Note: 经验之谈,操作过程中有不懂的地方可以留言问。 Step: Open the Eclipse: --1.File>>Import>>Git:Project from Git, 点击Next. --2.选择 Clone URI, 点击Next. --3.在 URI 中填入Git上项目的地址, 阅读全文
posted @ 2017-03-17 18:19 留白* 阅读(6584) 评论(0) 推荐(0) 编辑
摘要: 普通弹出框 div 一般这种 弹出框都属于dom的一部分,我们查看一下页面源码就可以定位到改弹出框了,然后定位下右上角的那个关闭, 这里有id,所以很方便通过 dr.findElement(By.id("xxx")).click(); 就可以关掉这个弹出框了。 2、新窗口弹出框 这里我们可以看到点击 阅读全文
posted @ 2017-03-09 18:41 留白* 阅读(2420) 评论(0) 推荐(0) 编辑
摘要: 日期:2017/3/9 今天查看Jenkins运行代码记录的日志时,发现并没有昨天新提交的代码,然后查看了Jenkins的测试项目中所有的自动化测试用例, 并没有看到昨天新提交的测试用例,又查看了github上的项目测试用例,同样没有,于是打开终端查看是什么原因,使用git status指令后,并没 阅读全文
posted @ 2017-03-09 11:38 留白* 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: 用于向具有drop-down的选择框中输入内容 new Select(new ChromeDriver().findElement(By.cssSelector(" 。。。"))).selectByIndex(。。。); new Select(new ChromeDriver().findEleme 阅读全文
posted @ 2017-03-08 14:25 留白* 阅读(529) 评论(0) 推荐(0) 编辑
摘要: 例如在页面中插入优酷视频时,一般使用优酷视频的通用代码,如下: <iframe height=498 width=510 src='http://player.youku.com/embed/XMTM5Nzc0NzI0' frameborder=0 'allowfullscreen'></ifram 阅读全文
posted @ 2017-03-02 10:20 留白* 阅读(11028) 评论(0) 推荐(0) 编辑