Skip to content

Commit

Permalink
Move fix to utils/methods.go
Browse files Browse the repository at this point in the history
  • Loading branch information
jpahm committed Sep 20, 2024
1 parent 25e11f9 commit e89f7b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/methods.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ func RefreshToken(chromedpCtx context.Context) map[string][]string {
chromedp.WaitVisible(`form#login-form`),
chromedp.SendKeys(`input#netid`, netID),
chromedp.SendKeys(`input#password`, password),
chromedp.WaitVisible(`input#login-button`),
chromedp.Click(`input#login-button`),
//chromedp.WaitVisible(`body`),
chromedp.WaitVisible(`button#login-button`),
chromedp.Click(`button#login-button`),
chromedp.WaitVisible(`body`),
)
if err != nil {
panic(err)
Expand Down

0 comments on commit e89f7b8

Please sign in to comment.