automation
文章平均质量分 80
emma_6
这个作者很懒,什么都没留下…
展开
-
Jbehave 学习笔记 (一)
1、什么是JBehaveJBehave是一个用java编写的BDD(Behavior-Driven-Design)框架, java界的Cucumber。(注: 1、BDD主要的目的是能够从业务领域专家的视角来编写测试用例,以解决技术人员和业务领域专家的沟通问题。2、Cucumber是基于Ruby的BDD框架) 2、JBehave的特点1)、纯Java实现,能调用jav转载 2014-02-25 10:46:15 · 3378 阅读 · 0 评论 -
Jbehave 学习笔记(二)
1、配置JBehave环境。1)、添加JBehave依赖包,基本的只需要添加jbehave-core和Junit包就足够了。2)、配置IntelliJ的JBehave插件,详情参见https://github.com/kumaraman21/IntelliJBehave/wiki2、实现一个JBehave的Story基本过程 JBahave的测试用例主要由3部分组成,描述转载 2014-02-25 10:47:52 · 2045 阅读 · 0 评论 -
selenium.webdriver.common.action_chains
The ActionChains implementation,classselenium.webdriver.common.action_chains.ActionChains(driver)[source]ActionChains are a way to automate low level interactions such as mouse movements, mouse转载 2014-02-27 09:56:31 · 2128 阅读 · 0 评论 -
sequential action during html page loading
By default, and from my current understanding, browser usually runs each page on 3 ways: HTML parser, Javascript/DOM, and CSS.The HTML parser is responsible for parsing and interpreting the markup lan原创 2014-02-27 11:29:03 · 718 阅读 · 0 评论 -
different wait in selenium
1.pageLoadTimeout driver.manage().timeouts().pageLoadTimeout(60, TimeUnit.SECONDS); 2. Custom waitForPageLoaded function is used when page content is dynamicloaded by some scripts. Which should原创 2014-02-27 10:41:03 · 892 阅读 · 0 评论