JavaScript 有三種彈窗 Alert (只有確定按鈕), Confirmation (確定,取消等按鈕), Prompt (有輸入對話框)辉川。
1.accept()相當于點擊彈出框的確定按鈕:driver.switchTo().alert().accept();
2.dismiss()相當于點擊彈出框的取消按鈕:driver.switchTo().alert().dismiss();
3.SendKeys(String input)針對于prompt情況的輸入:driver.switchTo().alert().sendKeys("可以輸入");
4.getText()獲取彈出框文本內(nèi)容:driver.switchTo().alert.getText();