|
|
@ -322,29 +322,37 @@ func chooseAndMakePayment(timerCtx context.Context, creditCardType, creditCard, |
|
|
|
log.Println("Waiting for payment gateway to load.") |
|
|
|
time.Sleep(time.Second * 5) |
|
|
|
|
|
|
|
for _, currPage := range browser.MustPages() { |
|
|
|
currPage.MustWaitLoad() |
|
|
|
foundPage := false |
|
|
|
|
|
|
|
for !foundPage { |
|
|
|
for _, currPage := range browser.MustPages() { |
|
|
|
currPage.MustWaitLoad() |
|
|
|
|
|
|
|
var currTitle string |
|
|
|
err := rod.Try(func() { |
|
|
|
currTitle = currPage.Timeout(100 * time.Millisecond).MustElement("title").MustText() |
|
|
|
}) |
|
|
|
if err != nil { |
|
|
|
currTitle = "" |
|
|
|
} |
|
|
|
|
|
|
|
var currTitle string |
|
|
|
err := rod.Try(func() { |
|
|
|
currTitle = currPage.Timeout(100 * time.Millisecond).MustElement("title").MustText() |
|
|
|
}) |
|
|
|
if err != nil { |
|
|
|
currTitle = "" |
|
|
|
if strings.Contains(currTitle, "Payment Acceptance") { |
|
|
|
log.Println("Page found.") |
|
|
|
foundPage = true |
|
|
|
page = currPage |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if strings.Contains(currTitle, "Payment Acceptance") { |
|
|
|
page = currPage |
|
|
|
// Exits if context cancelled
|
|
|
|
select { |
|
|
|
case <-timerCtx.Done(): |
|
|
|
browser.MustClose() |
|
|
|
cancelRefresh() |
|
|
|
return false |
|
|
|
default: |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// Exits if context cancelled
|
|
|
|
select { |
|
|
|
case <-timerCtx.Done(): |
|
|
|
browser.MustClose() |
|
|
|
cancelRefresh() |
|
|
|
return false |
|
|
|
default: |
|
|
|
time.Sleep(time.Second * 1) |
|
|
|
} |
|
|
|
|
|
|
|
expiryMonth := strings.Split(creditCardExpiry, "/")[0] |
|
|
|