-
We need to create a schema. The schema outlines all the endpoints and actions of our API.
-
We need to create the documentation that is a more human-readable form of the schema.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
import time | |
driver = webdriver.Chrome() | |
driver.get("https://maccheck.mcmaster.ca/") | |
time.sleep(5) | |
email = driver.find_element_by_id("i0116") | |
email.send_keys("") #Your email goes here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
import time | |
import datetime | |
driver = webdriver.Chrome() | |
driver.get("https://macreconline.ca/") | |
login_button = driver.find_element_by_id("loginLink") | |
login_button.click() |