DPTools auto log
./requirements.txt
txt
selenium
python-decouple
./main.py
py
import time
from selenium import webdriver
from selenium.webdriver.common.by import By
from decouple import config
DAY_IN=int(config("DAY_IN"))
DAY_OUT=int(config("DAY_OUT"))
URL=config("URL")
options = webdriver.FirefoxOptions()
# options.add_argument("--headless")
options.add_argument("--window-size=%s" % "1920,1080")
options.add_argument("--no-sandbox")
driver = webdriver.Firefox(options=options)
driver.get(URL)
user = config("USER")
pw = config("PW")
user_input = driver.find_element(By.XPATH, "//*[@class='text-input required email form-control']")
pw_input = driver.find_element(By.XPATH, "//*[@class='text-input required form-control']")
user_input.send_keys(user)
pw_input.send_keys(pw)
validate_login = driver.find_element(By.XPATH, "//*[@class='submit btn btn-primary btn-block']")
validate_login.click()
time.sleep(10)
days = driver.find_elements(By.CLASS_NAME, "ActivityReportWeekAdvancedRendererItem")[DAY_IN:DAY_OUT]
for day in days:
selects = [
day.find_element(By.CLASS_NAME, "MorningSelect"),
day.find_element(By.CLASS_NAME, "AfternoonSelect"),
]
for select in selects:
select.click()
time.sleep(1)
select.find_element(By.CLASS_NAME, "select2-search__field").send_keys(config("LOG_SEARCH"))
time.sleep(1)
id = select.get_attribute("id")
options = driver.find_elements(By.ID, f"select2-{id}-input-results")
options[0].click()
validate_timesheet = driver.find_element(By.XPATH, "//*[@class='submit btn btn-primary btn-block']")
validate_timesheet.click()
time.sleep(2)
driver.close()
./.env
sh
USER=
PW=
URL=https://ca.mathematic.dp.tools/fiches-de-temps/
LOG_SEARCH=dev
DAY_IN=0
DAY_OUT=5