摘要:
从测试过程的角度来说我们也可以把数据库测试分为 系统测试 传统软件系统测试的测试重点是需求覆盖,而对于我们的数据库测试同样也需要对需求覆盖进行保证。那么数据库在初期设计中也需要对这个进行分析,测试.例如存储过程,视图,触发器,约束,规则等我们都需要进行需求的验证确保这些功能设计是符合需求的.另一方面 阅读全文
摘要:
1 import java.awt.Robot; 2 import java.awt.event.KeyEvent; 3 import java.util.concurrent.TimeUnit; 4 5 import org.openqa.selenium.By; 6 import org.openqa.selenium.WebDriver; 7 import org.open... 阅读全文
摘要:
1 WebElement selector = driver.findElement(By.id("Selector")); 2 Select select = new Select(selector); 3 select.selectByIndex(3); 4 select.selectByVisibleText("桃子"); 5 ... 阅读全文
摘要:
1. Selenium常见的定位页面元素 2.页面常见的元素 3. 用户常见的操作 1. Selenium常见的定位页面元素 driver.findElement(By.id());driver.findElement(By.name());driver.findElement(By.tagName 阅读全文