01 2015 档案

摘要:Selenium对于我们进行web自动化测试有很大的帮助,如果要进行大范围的测试覆盖,就不能仅仅在一两台机器上跑了;同样Selenium-Grid也给我们提供了这样的帮助,我们可以借助Selenium-Grid很容易的实现分布式测试环境的搭建。不同于其它一些通用的分布式程序【如:hudson】,Se... 阅读全文
posted @ 2015-01-31 02:16 princessd8251 阅读(80) 评论(0) 推荐(0) 编辑
摘要:转自http://blog.csdn.net/five3/article/details/9428655Selenium-Grid版本selenium-grid分为版本1和版本2,其实它的2个版本并不是和selenium的版本1和2相对应发布的[即selenium-grid2的发布比selenium... 阅读全文
posted @ 2015-01-31 02:15 princessd8251 阅读(116) 评论(0) 推荐(0) 编辑
摘要:一、什么是about:configabout: config是Firefox的设置页面,Firefox提供了不少高级设置选项在这里以便让你可以更加详细地控制Firefox的运行方式。官方不推荐 用户手工修改about:config的设置。所以,如果你对于你想修改的内容不是非常确定的话,请不要去改变它... 阅读全文
posted @ 2015-01-31 02:10 princessd8251 阅读(339) 评论(0) 推荐(0) 编辑
摘要:The ProblemIf you're looking to run your tests on different browser and operating system combinations but you're unable to justify using a third-party... 阅读全文
posted @ 2015-01-31 01:47 princessd8251 阅读(187) 评论(0) 推荐(0) 编辑
摘要:fromhttp://www.softwareishard.com/blog/firebug/automate-page-load-performance-testing-with-firebug-and-selenium/Firebug's Net panel is well known and ... 阅读全文
posted @ 2015-01-30 01:53 princessd8251 阅读(273) 评论(0) 推荐(0) 编辑
摘要:方法1:打开Firefox后,发送F12快捷键激活Firebug. File file=new File("C:\\webdriver\\firebug-2.0.4-fx.xpi");//设置Firebug路径 FirefoxProfile profile... 阅读全文
posted @ 2015-01-29 12:41 princessd8251 阅读(405) 评论(0) 推荐(0) 编辑
摘要:from http://oracle-base.com/articles/misc/virtual-indexes.phpThe process of tuning SQL statements often requires the testing of alternate indexing str... 阅读全文
posted @ 2015-01-23 16:15 princessd8251 阅读(127) 评论(0) 推荐(0) 编辑
摘要:Virtual index can be created in oracle database which doesn't has any physical body and location. It can create with NOSEGMENT clause for testing purp... 阅读全文
posted @ 2015-01-23 10:59 princessd8251 阅读(103) 评论(0) 推荐(0) 编辑
摘要:Theopen_cursorsparameter is a governor, a block to prevent runaway tasks from consuming too much library cache RAM.Any session may execute many SQL st... 阅读全文
posted @ 2015-01-19 14:34 princessd8251 阅读(217) 评论(0) 推荐(0) 编辑
摘要:EXEC dbms_workload_repository.create_baseline(start_snap_id=>1, end_snap_id=>10, baseline_name=>'First baseline');EXEC dbms_workload_repository.create... 阅读全文
posted @ 2015-01-19 14:01 princessd8251 阅读(236) 评论(0) 推荐(0) 编辑
摘要:from http://www.ibm.com/developerworks/cn/web/wa-selenium2/简介Selenium 是用于测试 Web 应用程序用户界面 (UI) 的常用框架。它是一款用于运行端到端功能测试的超强工具。您可以使用多个编程语言编写测试,并且 Selenium 能... 阅读全文
posted @ 2015-01-19 00:36 princessd8251 阅读(175) 评论(0) 推荐(0) 编辑
摘要:from http://www.dba-oracle.com/t_bitmap_conversion_to_rowid.htmQuestion: I have a query against tables without a bitmap index, and get I see "bitmap c... 阅读全文
posted @ 2015-01-12 12:02 princessd8251 阅读(580) 评论(0) 推荐(0) 编辑
摘要:from http://technet.microsoft.com/zh-CN/library/ms180971可以使用 TOP 子句来限制 UPDATE 语句中修改的行数。当 TOP (n) 子句与 UPDATE 一起使用时,将针对随机选择的 n 行执行删除操作。例如,假设您要为一位高级销售人员减... 阅读全文
posted @ 2015-01-08 14:55 princessd8251 阅读(553) 评论(0) 推荐(0) 编辑
摘要:转自 http://blog.csdn.net/hliq5399/article/details/8315373今天用到sql server 的xml字段,首先这个项目中的xml字段都存为了ntext字段,所以第一个操作 ntext 转化为 xml以下摘自http://blog.darkthread... 阅读全文
posted @ 2015-01-08 14:51 princessd8251 阅读(278) 评论(0) 推荐(0) 编辑
摘要:SQLServer:函数subString有三个参数,帮助文档中给出这三个参数的意义,如下:sourceStringstartingLoc 子字符串在资源字符串中的起点。如果此值为负数或 0,则只返回那些所在位置大于零的字符。如果此值大于 $sourceString 的长度,则返回... 阅读全文
posted @ 2015-01-08 14:48 princessd8251 阅读(476) 评论(0) 推荐(0) 编辑
摘要:获取数据库中用户表信息1、获取特定库中所有用户表信息select * from sys.tables select * from sys.objects where type='U' --用户表 第二条语句中当type='S'时是系统表2、获取表的字段信息select * from sys.co... 阅读全文
posted @ 2015-01-05 01:29 princessd8251 阅读(218) 评论(0) 推荐(0) 编辑
摘要:本文介绍的是Java里一个内建的概念,Finalizer。你可能对它对数家珍,但也可能从未听闻过,这得看你有没有花时间完整地看过一遍 java.lang.Object类了。在java.lang.Object里面就有一个finalize()的方法。这个方法的实现是空的,不过一旦实 现了这个方法,就会触... 阅读全文
posted @ 2015-01-04 18:14 princessd8251 阅读(175) 评论(0) 推荐(0) 编辑
摘要:整理自:http://blog.chinaunix.net/uid-20607558-id-1916302.html在dba_tables视图中有一栏Degree,标识了在scan table时可以使用的并行度,发现default值,于是上网求证了一番。default值的引起是有下面语句造成的。al... 阅读全文
posted @ 2015-01-03 02:02 princessd8251 阅读(266) 评论(0) 推荐(0) 编辑
摘要:转自http://blog.chinaunix.net/uid-23177306-id-2531235.htmldirect path read与直接读取相关联的等待事件。当ORACLE将数据块直接读入会话的PGA(进程全局区)中,同时绕过SGA(系统全局区)。PGA中的数据并不和其他的会话共享。即... 阅读全文
posted @ 2015-01-02 21:20 princessd8251 阅读(690) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示