From 4a1a4a02057010e5c3a062e6d808be38d8f5319d Mon Sep 17 00:00:00 2001 From: Matthew Huntington Date: Wed, 13 Sep 2023 22:45:13 -0400 Subject: [PATCH] log in --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index f615971..fd21c16 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,7 @@ const delay = (ms) => { }); } -const main = async ()=> { +const login = async ()=> { const driver = await new selenium.Builder().forBrowser('chrome').build(); await driver.get('https://outcomes.generalassemb.ly/'); @@ -38,4 +38,4 @@ const main = async ()=> { element[1].click(); } -main(); +login();