-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcc-launch-v4.py
62 lines (51 loc) · 2.14 KB
/
cc-launch-v4.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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
from selenium.common.exceptions import NoSuchElementException, TimeoutException
import time
import datetime
def log_action(action):
""" Schreibt die Aktion und die aktuelle Uhrzeit in eine Logdatei. """
with open("aktion_log.txt", "a") as file:
timestamp = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
file.write(f"{timestamp}: {action}\n")
driver_path = '' # Dein Webdriver-Pfad
try:
driver = webdriver.Chrome(driver_path)
driver.get('https://portal.cc-student.com/index.php?cmd=login')
# Versuche, Benutzername und Passwort einzugeben
username = driver.find_element(By.ID, 'login_username')
password = driver.find_element(By.ID, 'login_passwort')
username.send_keys('XXXXXXXX')
password.send_keys('XXXXXXXX')
# Versuche, dich einzuloggen
login_button = driver.find_element(By.NAME, 'login_submit')
login_button.click()
# Navigiere zur spezifischen Unterseite
driver.get('https://portal.cc-student.com/index.php?cmd=kug')
# Versuche, den Zeiterfassungsbutton zu klicken
zeiterfassung_button = driver.find_element(By.NAME, 'showDialogButton')
zeiterfassung_button.click()
# Warte auf das Dialogfenster
WebDriverWait(driver, 10).until(
EC.visibility_of_element_located((By.CLASS_NAME, 'ui-dialog'))
)
# Suche den Button anhand seines 'name'-Attributs und prüfe den 'value'-Wert
buttons = driver.find_elements(By.NAME, 'kommengehenbutton')
for button in buttons:
value = button.get_attribute('value')
if value in ['Kommen', 'Gehen']:
button.click()
log_action(value)
break
else:
# Falls kein Button mit 'Kommen' oder 'Gehen' gefunden wurde
print("Kein passender Button gefunden.")
driver.quit()
exit()
time.sleep(5)
except Exception as e:
print(f"Ein Fehler ist aufgetreten: {e}")
finally:
driver.quit()