senium

 http://webdriver.googlecode.com 

所以CTRL属于Modifier Key,需要这样写:

Java代码   收藏代码
  1. Actions actionObject = new Actions(driver);        
  2.         actionObject.keyDown(Keys.CONTROL).sendKeys(Keys.F5).keyUp(Keys.CONTROL).perform();  

你可能感兴趣的:(senium)