私はテキスト「Cheese!」を検索しています。 googleのホームページと私は検索ボタンを押した後に検索されたリンクをクリックすることができますかわからない。たとえば、検索ページの上から3番目のリンクをクリックすると、そのリンクを特定してクリックする方法を見つけることができます。これまでの私のコード:Selenium webdriver click google search
package mypackage;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.ExpectedCondition;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.WebDriverWait;
public class myclass {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver", "C:\\selenium-java-2.35.0\\chromedriver_win32_2.2\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("http://www.google.com");
WebElement element = driver.findElement(By.name("q"));
element.sendKeys("Cheese!");
element.submit();
//driver.close();
}
}
+1これは最も簡単で、IMOです、ベストソリューション –