Selenium是一款优秀的WEB自动化测试工具,它功能强大,易于使用,支持多种平台、多种浏览器和多种开发语言。这里介绍使用python+selenium进行自动化测试的一些基础知识。在Windows下搭建测试环境,首先需要下载Python,Selenium应该还不支持Python 3.x系列,所以...
分类:
其他好文 时间:
2015-03-11 23:04:28
阅读次数:
187
https://leetcode.com/problems/word-search/Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of...
分类:
其他好文 时间:
2015-03-11 23:04:17
阅读次数:
206
存储过程 分为系统存储过程 和用户自定义村粗过程。系统存储过程只能调用不能自己定义。存储过程的好处:1.提高安全性 2.减少网络流量 3.模块化编程 4,执行速度快---------------常用的系统存储过程-------------------------系统存储过程-------------...
分类:
其他好文 时间:
2015-03-11 23:04:45
阅读次数:
171
函数原型gluPerspective(GLdouble fovy,GLdouble aspect,GLdouble zNear,GLdouble zFar)首先得设置gluPerspective,来看看它的参数都表示什么意思fovy,这个最难理解,我的理解是,眼睛睁开的角度,即,视角的大小,如果设置...
1 #include 2 #include 3 #include 4 5 #define MAXVEX 30 //最大顶点数 6 #define MAXEDGE 30 //最大边数 7 #define INFINITY 65535 //∞ ...
分类:
编程语言 时间:
2015-03-11 23:06:42
阅读次数:
423
Linked List CycleGiven a linked list, determine if it has a cycle in it. Follow up:Can you solve it without using extra space?SOLUTION 1: 依次将链表节点添加入已....
分类:
其他好文 时间:
2015-03-11 23:04:31
阅读次数:
223
public static int getStatusBarHeight(Context context){ Class c = null; Object obj = null; Field field = null; int x = 0, s...
分类:
移动开发 时间:
2015-03-11 23:05:42
阅读次数:
140
在Servlet里面,其中有一种方式是通过/search?username=" title="查看个人资料" target="_blank">来提交信息,在点击点击链接的时候,username的数据传给链接到的页面,在打开的页面里,因为他是一个doGet方法,所以汉字可能会产生乱码,这时候在接受页面...
分类:
其他好文 时间:
2015-03-11 23:05:10
阅读次数:
150
像上图中的这个效果,当我们在网页里引用站外图片时,常出现这样的情况.??? 服务器是怎么样知道,这个图片是在站外被引用的呢?还有在网站的统计结果,统计用户从何而来,如下图??? 统计时,是如何得知用户从哪儿来到的本网站呢?在Http协议中,头信息里,有一个重要的选项: RefererReferer:...
分类:
其他好文 时间:
2015-03-11 23:03:52
阅读次数:
194
awk之FS的指定file:FAN1 | 11h | ok | 160.96 | 11139 RPMFAN2 | 12h | ok | 160.96 | RPMFAN3 | 13h | ok | 160.96 | 10763 RPMFAN4 | 14h | ok | 160.96 | 1...
分类:
其他好文 时间:
2015-03-11 23:03:09
阅读次数:
156
Given an unsorted array, find the maximum difference between the successive elements in its sorted form.Try to solve it in linear time/space.Return 0 ...
分类:
其他好文 时间:
2015-03-11 23:05:38
阅读次数:
170
定义一个指针变量指针变量的使用如int c = 76;int * pointer = &c;则*pointer 为 pointer 所指向的存储单元的内容,是变量C而不是数字76另:指针变量也是变量,是变量就有地址。
分类:
编程语言 时间:
2015-03-11 23:05:38
阅读次数:
132
比较特殊的动作void CallFunc::execute() { if (_callFunc) { (_selectorTarget->*_callFunc)(); } else if( _function ){ _function(); }}type...
分类:
其他好文 时间:
2015-03-11 23:03:27
阅读次数:
196
在开发ios应用的时候,我们会经常遇到一个常见的问题:在不过分耦合的前提下,controllers间怎么进行通信。在IOS应用不断的出现三种模式来实现这种通信:1.委托delegation;2.通知中心Notification Center;3.键值观察key value observing...
分类:
其他好文 时间:
2015-03-11 23:03:23
阅读次数:
234
上图是效果,刚学php,写个万年历玩玩~ php万年历 php万年历"; echo"请输入正确年份!"; echo ""; return FALSE; }}if(!inputCheck()){ $year = date('Y');//获取当前年份 $month = date('m');//获取当前....
分类:
Web程序 时间:
2015-03-11 23:01:27
阅读次数:
282
转自:http://www.cnblogs.com/yeahgis/p/3853420.htmlVS2010错误:未找到导入的项目XXX,请确认声明中的路径正确,且磁盘上存在该文件。E:\IGSNRR\dev\PhDThesisCode_CUDA\gtcg\gtcg.vcxproj : error ...
分类:
其他好文 时间:
2015-03-11 23:02:34
阅读次数:
2705
public class BaseRepository where T : class { //实例化EF框架 DataModelContainer db = new DataModelContainer(); //添加 public T AddEntities(T entity) { db.En....
分类:
其他好文 时间:
2015-03-11 23:03:34
阅读次数:
1986