increase wait time after login submit

This commit is contained in:
Urko 2023-07-02 22:14:31 +02:00
parent 0ae922e58d
commit db9f7495aa
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ func (p ArcherAx50) Login(user, pass string) error {
}
login.MustClick()
log.Println(p.loginButtonID, "DONE")
time.Sleep(time.Millisecond * 400)
time.Sleep(time.Millisecond * 850)
return nil
}