新しいウィンドウに切り替えてタスクを完了したら、その新しいウィンドウを閉じて古いウィンドウに切り替え、
だからここにコードのように書いた:
_// Perform the click operation that opens new window
String winHandleBefore = driver.getWindowHandle();
// Switch to new window opened
for (String winHandle : driver.getWindowHandles()) {
driver.switchTo().window(winHandle);
}
// Perform the actions on new window
driver.findElement(By.id("edit-name")).clear();
WebElement userName = driver.findElement(By.id("edit-name"));
userName.clear();
try
{
driver.quit();
}
catch(Exception e)
{
e.printStackTrace();
System.out.println("not close");
}
driver.switchTo().window(winHandleBefore);// Again I want to start code this old window
_
上記のコードdriver.quit()
またはdriver.close()
を書きました。しかし、エラーが発生しています。誰も私を助けることができますか...?
org.openqa.Selenium.remote.SessionNotFoundException:quit()が呼び出された後、FirefoxDriverは使用できません。
単一のブラウザウィンドウを閉じるには:
driver.close();
すべての(親+子)ブラウザーウィンドウを閉じて、セッション全体を終了するには:
driver.quit();
コントロールをポップアップに切り替えるために使用したロジックが間違っています
for (String winHandle : driver.getWindowHandles()) {
driver.switchTo().window(winHandle);
}
上記のロジックがコントロールを新しいウィンドウに切り替える方法は?
以下のロジックを使用して、コントロールを新しいウィンドウに切り替えます
// get all the window handles before the popup window appears
Set beforePopup = driver.getWindowHandles();
// click the link which creates the popup window
driver.findElement(by).click();
// get all the window handles after the popup window appears
Set afterPopup = driver.getWindowHandles();
// remove all the handles from before the popup window appears
afterPopup.removeAll(beforePopup);
// there should be only one window handle left
if(afterPopup.size() == 1) {
driver.switchTo().window((String)afterPopup.toArray()[0]);
}
// Perform the actions on new window
**`//Close the new window`**
driver.close();
//perform remain operations in main window
//close entire webDriver session
driver.quit();
//store instance of main window first using below code
String winHandleBefore = driver.getWindowHandle();
新しいウィンドウを開くクリック操作を実行します
//Switch to new window opened
for (String winHandle : driver.getWindowHandles()) {
driver.switchTo().window(winHandle);
}
// Perform the actions on new window
driver.close(); //this will close new opened window
//switch back to main window using this code
driver.switchTo().window(winHandleBefore);
// perform operation then close and quit
driver.close();
driver.quit();
public class First {
public static void main(String[] args) {
System.out.println("Welcome to Selenium");
WebDriver wd= new FirefoxDriver();
wd.manage().window().maximize();
wd.get("http://opensource.demo.orangehrmlive.com/");
wd.findElement(By.id("txtUsername")).sendKeys("Admin");
wd.findElement(By.id("txtPassword")).sendKeys("admin");
wd.findElement(By.id("btnLogin")).submit();
**wd.quit(); //--> this helps to close the web window automatically**
System.out.println("Tested Sucessfully ");
}
}
単一の子ウィンドウを閉じるには2つの方法があります。
方法1:
driver.close();
方法2:キーボードのCtrl + wキーを使用して:
driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL + "w");
GetWindowHandle()またはgetWindowHandles()から有効なウィンドウハンドルが取得された後、ウィンドウが自動的に閉じる場合があります。
クリティカルセクションタイプのコードを作成しない限り、getWindowHandles()の実行中にウィンドウが閉じる可能性さえあります(つまり、すべてのウィンドウ管理操作が完了するまで、テストコードの実行中にブラウザーをフリーズします)
現在のドライバーの有効性を確認するより迅速な方法は、sessionIdを確認することです。これは、driver.close()またはウィンドウ自体を閉じることによってnullになります。
次のように、セッションIDを取得するには、WebDriverをリモートドライバーインターフェイス(RemoteWebDriver)にキャストする必要があります。
if (null == ((RemoteWebDriver)driver).sessionId) {
// current window is closed, switch to another or quit
} else {
// current window is open, send commands or close
}
また、最後のウィンドウを閉じることは、quit()と同等です。
私も試しました
1)driver.close();
2)driver.quit();
明らかに、これらのメソッドは期待どおりに動作しません!(動作しないとは言いませんが)ドライバークラスをシングルトンにすることさえ試みましたが、テストケースを並行して実行する助けにはなりませんでした。最適なソリューション。最後に、batファイルを実行する別のクラスを作成しました。batファイルには、chromeドライバープロセスとそのすべての子プロセスをグループ化するコマンドが含まれています。 Java class Runtimeを使用して実行しました。
batファイルを実行するクラスファイル
public class KillChromeDrivers {
public static void main(String args[]) {
try {
Runtime.getRuntime().exec("cmd /c start E:\\Work_Folder\\SelTools\\KillDrivers.bat");
//Runtime.getRuntime().exec()
} catch (Exception ex) {
}
}
}
[.bat]ファイルに入れなければならないコマンド
taskkill /IM "chromedriver.exe" /T /F