Compare commits

...

7 Commits

Author SHA1 Message Date
bf700eeeb3 feat add log date 2023-07-02 23:13:30 +02:00
bbc94e0375 polish logs 2023-07-02 23:08:07 +02:00
ad8ed58366 feat increase wait 2023-07-02 22:16:17 +02:00
db9f7495aa increase wait time after login submit 2023-07-02 22:14:31 +02:00
0ae922e58d feat: change jquery to pure js 2023-07-02 21:28:53 +02:00
fc35559ab8 feat wait a little more 2023-07-02 20:16:34 +02:00
c09933767b feat: archer add print message 2023-07-02 20:15:54 +02:00
2 changed files with 17 additions and 6 deletions

View File

@@ -29,18 +29,19 @@ func NewArcherAx50(page *rod.Page) ArcherAx50 {
}
func (p ArcherAx50) Login(user, pass string) error {
time.Sleep(time.Millisecond * 1250)
time.Sleep(time.Millisecond * 1850)
p.page.MustEvaluate(&rod.EvalOptions{
JS: `() => {
$("input.password-text").each((i,v) => {
document.querySelectorAll("input.password-text").forEach((v, i) => {
v.click();
v.focus();
v.value="` + pass + `";
})
return '';
return log;
}`,
})
time.Sleep(time.Millisecond * 250)
log.Println(p.passwordID, "DONE")
@@ -51,12 +52,12 @@ func (p ArcherAx50) Login(user, pass string) error {
}
login.MustClick()
log.Println(p.loginButtonID, "DONE")
time.Sleep(time.Millisecond * 400)
time.Sleep(time.Millisecond * 1550)
return nil
}
func (p ArcherAx50) SwitchWIFI() error {
time.Sleep(time.Second * 1)
time.Sleep(time.Millisecond * 1350)
pageURL := p.page.MustInfo().URL
log.Println("p.page.MustInfo().URL", pageURL)
@@ -67,7 +68,7 @@ func (p ArcherAx50) SwitchWIFI() error {
wirelessTab.MustClick()
log.Println(p.wirelessTab, "DONE")
time.Sleep(time.Millisecond * 750)
time.Sleep(time.Millisecond * 1250)
checked := p.page.MustEvaluate(&rod.EvalOptions{
JS: `() => {
return document.getElementById('` + p.chkWifi2gID + `').checked;
@@ -75,6 +76,7 @@ func (p ArcherAx50) SwitchWIFI() error {
})
isChecked := checked.Value.Bool()
log.Println(getCheckedMessage(isChecked))
p.page.MustEvaluate(&rod.EvalOptions{
JS: `() => {
document.getElementById('` + p.chkWifi2gID + `').checked=` + fmt.Sprint(!isChecked) + `;
@@ -93,3 +95,11 @@ func (p ArcherAx50) SwitchWIFI() error {
time.Sleep(time.Millisecond * 1500)
return nil
}
func getCheckedMessage(isChecked bool) string {
if isChecked {
return "Time to sleep, let's switch off"
}
return "Time to laborate, let's switch WIFI on"
}

View File

@@ -22,6 +22,7 @@ func main() {
}
config := cfg.NewConfig(envFile)
log.SetFlags(log.Ldate)
log.SetFlags(log.Lmicroseconds)
if config.LogFile {
logFileName := fmt.Sprintf("%s.txt", time.Now().Format(strings.ReplaceAll(time.RFC1123Z, ":", "_")))