Add files via upload

This commit is contained in:
David Rotermund 2023-05-15 12:57:38 +02:00 committed by GitHub
parent 4df6663271
commit 148265b23e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,6 +11,8 @@ from selenium.webdriver.firefox.service import Service as FirefoxService
from webdriver_manager.firefox import GeckoDriverManager
from content.change_url import change_url
from content.get_drop_targets import get_drop_targets
from content.make_drop_map import make_drop_map
page_id: int = 59492
base_url: str = "https://www.uni-bremen.de"
@ -45,6 +47,10 @@ for i in range(0, len(id_name)):
print(f"{id_name[i]} => ({center_x[i]}, {center_y[i]})")
organization_matrix = make_drop_map(center_x, center_y)
print("How the drop points are organized: (-1 => Empty)")
print(organization_matrix)
print("Close shop")
driver.close()
driver.quit()