I am trying to select No. of Rooms field Using Python Selenium from this url.
My current code is:
inputBHK = driver.find_element_by_id("No_of_Rooms_newpap")
input1BHK = driver.find_element_by_id("No_of_Rooms1")
ActionChains(driver).click(inputBHK).click(input1BHK).perform()
Apart from the usual import and the Initialization. The exception Raised is:
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.MoveTargetOutOfBoundsException: Message: u'Offset within
element cannot be scrolled into view: (0, 0): [object HTMLInputElement]' ; Stacktrace:
Any ideas on how to proceed?