2013-02-25 88 views
0

在這裏,我需要刪除一些記錄。當我選擇所有項目並單擊刪除按鈕。它顯示彈出如「你確定要刪除此」與確定&沒有按鈕。那麼我需要點擊確定按鈕並刪除選定的項目。但我用下面的代碼還沒有點擊button.If人確定知道這個答案,請讓我知道..如何點擊確定按鈕在彈出窗口中使用硒python webdriver

class login(unittest.TestCase): 
def setUp(self): 
    self.driver= webdriver.Firefox() 
    self.driver.implicitly_wait(30) 
    self.base_url = "http://ww.example.com" 
    self.verificationErrors = [] 
    self.accept_next_alert = True 

def close_all_popups(driver): 
    driver.window_handles 
    for h in driver.window_handles[1:]: 
     driver.switch_to_window(h) 
     driver.close() 
    driver.switch_to_window(driver.window_handles[0]) 

def test001_login(self): 
    driver=self.driver 
    driver.delete_all_cookies() 
    driver.get(self.base_url +"/") 
    driver.find_element_by_xpath("//*[@id='form-div']/form/input[1]").clear() 
    driver.find_element_by_xpath("//*[@id='form-div']/form/input[1]").send_keys("xxxx") 
    driver.find_element_by_xpath("//*[@id='form-div']/form/input[2]").clear() 
    driver.find_element_by_xpath("//*[@id='form-div']/form/input[2]").send_keys("xxxxx") 
    driver.find_element_by_xpath("//*[@id='form-div']/form/input[3]").click() 
    driver.find_element_by_xpath("//*[@id='navigation']/li[4]/a").click() 
    driver.find_element_by_xpath("//*[@id='selectall']").click() 
    driver.find_element_by_xpath("//a[text()='Delete']").click() 
    self.close_all_popups() 


def is_element_present(self, how, what): 
    try:self.driver.find_element(by=how, value=what) 
    except NoSuchElementException, e: return False 
    return True 

def close_alert_and_get_its_text(self): 
    try: 
     alert = self.driver.switch_to_alert() 
     if self.accept_next_alert: 
      alert.accept() 
     else: 
      alert.dismiss() 
     return alert.text 
    finally: self.accept_next_alert = True 

def tearDown(self): 
    self.driver.quit() 
    self.assertEqual([], self.verificationErrors) 

回答

0

我想你點擊刪除

self.close_alert_and_get_its_text(self) 
後沒有調用此方法
+0

@ Santosh Sharma:謝謝你回覆我。上面的代碼是部分正確的。根據你的代碼我得到了答案。我們正在調用內部類的函數。像這樣我們必須調用:self.close_alert_and_get_its_text()。沒有必要在自己的論點中使用自我。 – 2013-02-25 08:45:31

+0

@senthil:我不知道Python ..但是,通過看到你的代碼,我想到了指出這個錯誤..無論如何,在註釋中張貼正確的答案可能對另一個用戶有用。 – Santoshsarma 2013-02-25 09:13:43

相關問題