summary refs log tree commit diff
path: root/main.py
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2024-12-31 14:34:47 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2024-12-31 18:24:34 +0100
commit843c3336314f942bb7139a2c7da7625f98db46ac (patch)
tree32a1d87b6b42e8a7535a1539e5e73f3eda3a90a4 /main.py
downloadrenfe-843c3336314f942bb7139a2c7da7625f98db46ac.tar.gz
renfe-843c3336314f942bb7139a2c7da7625f98db46ac.tar.bz2
renfe-843c3336314f942bb7139a2c7da7625f98db46ac.zip
Initial commit
Diffstat (limited to 'main.py')
-rw-r--r--main.py88
1 files changed, 88 insertions, 0 deletions
diff --git a/main.py b/main.py
new file mode 100644
index 0000000..d1e1bff
--- /dev/null
+++ b/main.py
@@ -0,0 +1,88 @@
+from selenium.webdriver.common.by import By
+from selenium import webdriver
+from selenium.webdriver.chrome.options import Options
+from time import sleep
+import logging
+import os
+from dotenv import load_dotenv
+
+def main():
+    logging.basicConfig(
+        format='%(asctime)s %(levelname)-8s %(message)s',
+        level=logging.INFO,
+        datefmt='%Y-%m-%d %H:%M:%S'
+    )
+
+    load_dotenv()
+
+    test_ua = 'Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36'
+
+    options = Options()
+
+    # options.add_argument("--headless")  # Remove this if you want to see the browser (Headless makes the chromedriver not have a GUI)
+    # options.add_argument("--window-size=1920,1080")
+
+    options.add_argument(f'--user-agent={test_ua}')
+
+    options.add_argument('--no-sandbox')
+    options.add_argument("--disable-extensions")
+
+    driver = webdriver.Chrome(options=options)
+
+    driver.get('https://venta.renfe.com/vol/loginParticular.do')
+
+    sleep(5)
+
+    driver.find_element(By.ID, "num_tarjeta").send_keys(os.getenv('RENFE_EMAIL'))
+    driver.find_element(By.ID, "pass-login").send_keys(os.getenv('RENFE_PASSWORD'))
+    driver.find_element(By.ID, "loginButtonId").click()
+
+    sleep(15)
+
+    driver.get("https://venta.renfe.com/vol/myPassesCard.do")
+
+    sleep(5)
+
+    element = driver.find_element(By.XPATH, "//a[contains(@onclick, 'submitNew')]")
+    driver.execute_script("arguments[0].scrollIntoView(true);", element)
+    sleep(2)
+    driver.execute_script("arguments[0].click();", element)
+
+    sleep(5)
+
+    #todo: select radio button ida o vuelta
+
+    datepicker = driver.find_element(By.ID, "fecha1")
+    driver.execute_script(f"arguments[0].value = '06/01/2025';", datepicker)
+
+    element = driver.find_element(By.ID, "submitSiguiente")
+    driver.execute_script("arguments[0].scrollIntoView(true);", element)
+    sleep(2)
+    driver.execute_script("arguments[0].click();", element)
+
+    sleep(5)
+
+    select_button = None
+    while True:
+        try:
+            row = driver.find_element(By.XPATH, f"//tr[td[contains(text(), '18.50')]]")
+            select_button = row.find_element(By.XPATH, ".//button[contains(@id, 'continuar')]")
+            break
+        except Exception:
+            logging.info("No available places - refreshing...")
+            driver.refresh()
+            sleep(15)
+            continue
+    driver.execute_script("arguments[0].scrollIntoView(true);", select_button)
+    sleep(2)
+    driver.execute_script("arguments[0].click();", select_button)
+
+    sleep(5)
+
+    element = driver.find_element(By.ID, "submitSiguiente")
+    driver.execute_script("arguments[0].click();", element)
+
+    logging.info("TICKET BOUGHT!!")
+
+if __name__ == "__main__":
+    main()