-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: #1180
- Loading branch information
Showing
3 changed files
with
173 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
149 changes: 149 additions & 0 deletions
149
uk_bin_collection/uk_bin_collection/councils/BostonBoroughCouncil.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
from bs4 import BeautifulSoup | ||
from selenium.webdriver.common.by import By | ||
from selenium.webdriver.support import expected_conditions as EC | ||
from selenium.webdriver.support.ui import Select | ||
from selenium.webdriver.support.wait import WebDriverWait | ||
|
||
from uk_bin_collection.uk_bin_collection.common import * | ||
from uk_bin_collection.uk_bin_collection.get_bin_data import AbstractGetBinDataClass | ||
|
||
|
||
# import the wonderful Beautiful Soup and the URL grabber | ||
class CouncilClass(AbstractGetBinDataClass): | ||
""" | ||
Concrete classes have to implement all abstract operations of the | ||
base class. They can also override some operations with a default | ||
implementation. | ||
""" | ||
|
||
def parse_data(self, page: str, **kwargs) -> dict: | ||
driver = None | ||
try: | ||
data = {"bins": []} | ||
user_paon = kwargs.get("paon") | ||
user_postcode = kwargs.get("postcode") | ||
web_driver = kwargs.get("web_driver") | ||
headless = kwargs.get("headless") | ||
check_paon(user_paon) | ||
check_postcode(user_postcode) | ||
|
||
# Create Selenium webdriver | ||
driver = create_webdriver(web_driver, headless, None, __name__) | ||
driver.get("https://www.boston.gov.uk/findwastecollections") | ||
|
||
accept_button = WebDriverWait(driver, timeout=30).until( | ||
EC.element_to_be_clickable((By.NAME, "acceptall")) | ||
) | ||
accept_button.click() | ||
|
||
# Wait for the postcode field to appear then populate it | ||
inputElement_postcode = WebDriverWait(driver, 30).until( | ||
EC.presence_of_element_located( | ||
(By.ID, "BBCWASTECOLLECTIONS_START_SEARCHPOSTCODE") | ||
) | ||
) | ||
inputElement_postcode.send_keys(user_postcode) | ||
|
||
# Click search button | ||
findAddress = WebDriverWait(driver, 10).until( | ||
EC.presence_of_element_located( | ||
(By.ID, "BBCWASTECOLLECTIONS_START_START10_NEXT") | ||
) | ||
) | ||
findAddress.click() | ||
|
||
# Wait for the custom dropdown container to be visible | ||
WebDriverWait(driver, 10).until( | ||
EC.element_to_be_clickable( | ||
(By.ID, "BBCWASTECOLLECTIONS_COLLECTIONADDRESS_INCIDENTUPRN_chosen") | ||
) | ||
) | ||
|
||
# Click on the dropdown to open it | ||
dropdown = driver.find_element( | ||
By.ID, "BBCWASTECOLLECTIONS_COLLECTIONADDRESS_INCIDENTUPRN_chosen" | ||
) | ||
dropdown.click() | ||
|
||
# Wait for the dropdown options to be visible | ||
WebDriverWait(driver, 10).until( | ||
EC.visibility_of_element_located((By.CLASS_NAME, "chosen-results")) | ||
) | ||
|
||
# Locate the desired option using its text | ||
desired_option = driver.find_element( | ||
By.XPATH, | ||
"//li[@class='active-result' and contains(text(), '" | ||
+ user_paon | ||
+ "')]", | ||
) | ||
|
||
# Click on the desired option | ||
desired_option.click() | ||
|
||
# dropdown.select_by_visible_text(user_paon) | ||
|
||
# Click search button | ||
findAddress = WebDriverWait(driver, 10).until( | ||
EC.presence_of_element_located( | ||
(By.ID, "BBCWASTECOLLECTIONS_COLLECTIONADDRESS_NEXT3_NEXT") | ||
) | ||
) | ||
findAddress.click() | ||
|
||
# Wait for the collections table to appear | ||
WebDriverWait(driver, 10).until( | ||
EC.presence_of_element_located( | ||
(By.ID, "BBCWASTECOLLECTIONS_SERVICE_FIELD859_OUTER") | ||
) | ||
) | ||
|
||
soup = BeautifulSoup(driver.page_source, features="html.parser") | ||
|
||
# Find the container with the bin information | ||
bins = soup.find_all( | ||
"div", class_="grid__cell grid__cell--listitem grid__cell--cols1" | ||
) | ||
|
||
current_year = datetime.now().year | ||
next_year = current_year + 1 | ||
|
||
# Loop through each bin container to extract the details | ||
for bin_div in bins: | ||
# Find the bin type (title text) | ||
bin_type = bin_div.find("h2", class_="item__title").text.strip() | ||
|
||
# Find the next collection date | ||
next_collection = ( | ||
bin_div.find("div", class_="item__content") | ||
.find("div") | ||
.text.strip() | ||
.replace("Next: ", "") | ||
) | ||
|
||
next_collection = datetime.strptime( | ||
remove_ordinal_indicator_from_date_string(next_collection), | ||
"%A %d %B", | ||
) | ||
|
||
if (datetime.now().month == 12) and (next_collection.month == 1): | ||
next_collection = next_collection.replace(year=next_year) | ||
else: | ||
next_collection = next_collection.replace(year=current_year) | ||
|
||
dict_data = { | ||
"type": bin_type, | ||
"collectionDate": next_collection.strftime(date_format), | ||
} | ||
data["bins"].append(dict_data) | ||
|
||
except Exception as e: | ||
# Here you can log the exception if needed | ||
print(f"An error occurred: {e}") | ||
# Optionally, re-raise the exception if you want it to propagate | ||
raise | ||
finally: | ||
# This block ensures that the driver is closed regardless of an exception | ||
if driver: | ||
driver.quit() | ||
return data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters