ボタンを手動でクリックすると、ブラウザー (IE 8) は新しい URL に移動します。しかし、webdriver を使用して実行すると、新しいブラウザー (IE 8) が開きます。新しいブラウザを開かずに新しい URL に移動するにはどうすればよいですか?
driver.get(url);
driver.findElement(By.linkText(linkText)).click();
switchToFrame(frameName);
WebElement parent_element = driver.findElement(By.xpath(parent_xpath));
WebElement child_element = driver.findElement(By.xpath(child_xpath));
Actions action = new Actions(driver);
action.moveToElement(parent_element).build().perform();
child_element.click(); //it opens a new browser if i run webdriver