Add files via upload
This commit is contained in:
parent
4df6663271
commit
148265b23e
1 changed files with 6 additions and 0 deletions
|
@ -11,6 +11,8 @@ from selenium.webdriver.firefox.service import Service as FirefoxService
|
||||||
from webdriver_manager.firefox import GeckoDriverManager
|
from webdriver_manager.firefox import GeckoDriverManager
|
||||||
from content.change_url import change_url
|
from content.change_url import change_url
|
||||||
from content.get_drop_targets import get_drop_targets
|
from content.get_drop_targets import get_drop_targets
|
||||||
|
from content.make_drop_map import make_drop_map
|
||||||
|
|
||||||
|
|
||||||
page_id: int = 59492
|
page_id: int = 59492
|
||||||
base_url: str = "https://www.uni-bremen.de"
|
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]})")
|
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")
|
print("Close shop")
|
||||||
driver.close()
|
driver.close()
|
||||||
driver.quit()
|
driver.quit()
|
||||||
|
|
Loading…
Reference in a new issue