otictac1
otictac1

Reputation: 205

Selenium Python Clicking Button on Javascript Popup Does Nothing

I have a relatively simple question. I am trying to get a button to be clicked on a popup window that I believe is javascript with Selenium. I ran the Selenium add on for Firefox and it gave me code, but it doesn't work. The code is fairly long and all works just fine, but when it gets to this line:

driver.find_element_by_id("cancelExistingReservationButton").click()

It just waits and then it errors out with this message:

That button is on the screen, but it never gets clicked. I know that the part of the code works that follows it, but I just can't get it to do anything with that line.

    Traceback (most recent call last):
  File "C:/Users/Bradley/Desktop/testParkFare.py", line 34, in test_park_fare
    driver.find_element_by_id("cancelExistingReservationButton").click()
  File "C:\Python27\lib\site-packages\selenium\webdriver\remote\webelement.py", line 65, in click
    self._execute(Command.CLICK_ELEMENT)
  File "C:\Python27\lib\site-packages\selenium\webdriver\remote\webelement.py", line 385, in _execute
    return self._parent.execute(command, params)
  File "C:\Python27\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 171, in execute
    response = self.command_executor.execute(driver_command, params)
  File "C:\Python27\lib\site-packages\selenium\webdriver\remote\remote_connection.py", line 349, in execute
    return self._request(command_info[0], url, body=data)
  File "C:\Python27\lib\site-packages\selenium\webdriver\remote\remote_connection.py", line 380, in _request
    resp = self._conn.getresponse()
  File "C:\Python27\lib\httplib.py", line 1074, in getresponse
    response.begin()
  File "C:\Python27\lib\httplib.py", line 415, in begin
    version, status, reason = self._read_status()
  File "C:\Python27\lib\httplib.py", line 379, in _read_status
    raise BadStatusLine(line)
    BadStatusLine: ''

Any help you could give would be really appreciated.

Here is the entirety of the code:

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import Select
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC


from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import NoAlertPresentException
import unittest, time, re

class Test2(unittest.TestCase):
    def setUp(self):
        self.driver = webdriver.Firefox()
        self.driver.maximize_window()
        self.driver.implicitly_wait(60)
        self.base_url = "https://disneyworld.disney.go.com"
        self.verificationErrors = []
        self.accept_next_alert = True

    def test_2(self):
        driver = self.driver
        driver.get(self.base_url + "/dining/grand-floridian-resort-and-spa/1900-park-fare/")
        driver.find_element_by_xpath("(//button[@type='button'])[2]").click()
        driver.find_element_by_link_text('27').click()
        driver.find_element_by_css_selector("div.select-toggle.hoverable").click()
        driver.find_element_by_id('diningAvailabilityForm-searchTime-0').click()
        driver.find_element_by_css_selector("#partySize-wrapper > div.select-toggle.hoverable").click()
        driver.find_element_by_id("partySize-3").click()
        driver.find_element_by_css_selector("span.buttonText").click()
        availabletimes = driver.find_element_by_xpath('//*[@id="timesContainer"]/div[2]').get_attribute("innerHTML")

        availableTimesList = []

        startpoint = availabletimes.find("buttonText")+12
        endpoint = availabletimes.find("span", startpoint)-2

        allwantedtimes = ['8:45 AM', '8:40 AM', '8:50 AM', '8:55 AM', '8:35 AM', '8:30 AM', '8:25 AM', '8:20 AM',
                          '9:00 AM', '9:05 AM', '9:15 AM', '9:20 AM']

        positions = ["//div[@id='timesContainer']/div[2]/a/span/span/span",
                     "//div[@id='timesContainer']/div[2]/a[2]/span/span/span",
                     "//div[@id='timesContainer']/div[2]/a[3]/span/span/span"]

        while startpoint > 500:
            availableTimesList.append(availabletimes[startpoint: endpoint])
            startpoint = availabletimes.find("buttonText", endpoint)+12
            endpoint = availabletimes.find("span", startpoint)-2


        if len(availableTimesList) < 4:
            for y in range(0, len(allwantedtimes)):
                if allwantedtimes[y] in availableTimesList:
                    driver.find_element_by_xpath(positions[availableTimesList.index(allwantedtimes[y])]).click()
                    driver.find_element_by_id("loginPageUsername").clear()
                    driver.find_element_by_id("loginPageUsername").send_keys("ourlogin")
                    driver.find_element_by_id("loginPagePassword").clear()
                    driver.find_element_by_id("loginPagePassword").send_keys("ourpassword")
                    driver.find_element_by_id("loginPageSubmitButton").click()
                    print('We got here at least')
                    element = WebDriverWait(driver, 10).until(EC.presence_of_element_located((By.ID, "cancelExistingReservationButton")))
                    element.click()
                    print('But never here')
                    driver.find_element_by_id("cancelExistingReservationButton").click()
                    driver.find_element_by_id("continueWithExistingReservationButton").click()
                    driver.find_element_by_css_selector("#guestSelectBox0-wrapper > div.select-toggle.hoverable").click()
                    driver.find_element_by_css_selector("#guestSelectBox0-2 > span.rawOption").click()
                    driver.find_element_by_css_selector("#guestSelectBox1-wrapper > div.select-toggle.hoverable").click()
                    driver.find_element_by_css_selector("#guestSelectBox1-3 > span.rawOption").click()
                    driver.find_element_by_css_selector("#guestSelectBox2-wrapper > div.select-toggle.hoverable").click()
                    driver.find_element_by_css_selector("#guestSelectBox2-4 > span.rawOption").click()
                    driver.find_element_by_id("done").click()
                    driver.find_element_by_id("done").click()
                    driver.find_element_by_id("mobilePhone").clear()
                    driver.find_element_by_id("mobilePhone").send_keys("8659473353")
                    driver.find_element_by_id("nextButton").click()
                    driver.find_element_by_css_selector("span.rich-checkbox.unselected").click()
                    driver.find_element_by_id("nextButton").click()
                    break







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

    def is_alert_present(self):
        try: self.driver.switch_to_alert()
        except NoAlertPresentException, e: return False
        return True

    def close_alert_and_get_its_text(self):
        try:
            alert = self.driver.switch_to_alert()
            alert_text = alert.text
            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)

if __name__ == "__main__":
    unittest.main()

Upvotes: 1

Views: 1210

Answers (2)

alecxe
alecxe

Reputation: 473863

Let's change the logic here. First - log in, then open up the page and try making a reservation. Also, instead of presence_of_element_located you should use visibility_of_element_located expected condition:

# log in
driver.get(self.base_url + '/login/')
driver.find_element_by_id('loginPageUsername').send_keys('ourlogin')
driver.find_element_by_id('loginPagePassword').send_keys('ourpassword')
driver.find_element_by_id('loginPageSubmitButton').click()

driver.get(self.base_url + "/dining/grand-floridian-resort-and-spa/1900-park-fare/")
driver.find_element_by_xpath("(//button[@type='button'])[2]").click()
driver.find_element_by_link_text('27').click()

...

if len(availableTimesList) < 4:
    for y in range(0, len(allwantedtimes)):
        if allwantedtimes[y] in availableTimesList:
            driver.find_element_by_xpath(positions[availableTimesList.index(allwantedtimes[y])]).click()
            print('We got here at least')
            element = WebDriverWait(driver, 10).until(EC.visibility_of_element_located((By.ID, "cancelExistingReservationButton")))
            element.click()
            print('But never here')

Upvotes: 1

James Lemieux
James Lemieux

Reputation: 750

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

element = WebDriverWait(driver, 10).until(EC.presence_of_element_located((By.ID, "cancelExistingReservationButton")))

element.click()

You could try this to make sure the button is loaded and ready to be clicked by Selenium.

Upvotes: 1

Related Questions