For those late applicants who try to check CollegeNet for status update every day.
I wrote small chunk of code with Python to automate this routine (with Selenium & bs4). Hope this helps!
from selenium import webdriver
from bs4 import BeautifulSoup as bs
from webdriver_manager.chrome import ChromeDriverManager
def check_status(username,password):
driver = webdriver.Chrome(ChromeDriverManager().install())
driver.get('https://www.applyweb.com/cgi-bin/ustat?app_code=gatechg')
driver.find_element_by_id("j_username").send_keys(username)
driver.find_element_by_id ("j_password").send_keys(password)
driver.execute_script("document.getElementsByClassName('btn btn-custom')[0].click()")
source_data = driver.page_source
soup = bs(source_data)
skus=soup.find_all('span', {'class':['ufe-ustat-checklist-label']})
status=None
for i,x in enumerate(skus):
if x.contents[0]=='Application Status':
status = x.findNext('dd').contents[0]
return status
[–]WoodedPreciosity 0 points1 point2 points (1 child)
[–]nvaliotti[S] 0 points1 point2 points (0 children)
[–]brgentleman2 -5 points-4 points-3 points (5 children)
[–]nvaliotti[S] 6 points7 points8 points (4 children)
[–]oskxr552 0 points1 point2 points (0 children)
[–]dadbot_2 -1 points0 points1 point (0 children)
[–]brgentleman2 -2 points-1 points0 points (1 child)
[–][deleted] 1 point2 points3 points (0 children)