//通过完全匹配链接来定位
driver.findElement(By.linkText("新闻")).click();
//通过部分匹配链接来定位
driver.findElement(By.partialLinkText("新")).click();
//通过xpath方式进行定位
driver.findElement(By.xpath(".//*[@id=‘kw‘]")).sendKeys("selenium");
//通过css方式进行定位
driver.findElement(By.cssSelector("#kw")).sendKeys("时光");