Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DemoCookies() waits on NID cookie existence #370

Merged
merged 2 commits into from
Aug 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion wd_demo.au3
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,13 @@ Func DemoCookies()
ConsoleWrite("wd_demo.au3: (" & @ScriptLineNumber & ") : Cookies (obtained at start after navigate) : " & $sAllCookies & @CRLF)

ConsoleWrite("wd_demo.au3: (" & @ScriptLineNumber & ") : WD: Get 'NID' cookie:" & @CRLF)
Local $sNID = _WD_Cookies($sSession, 'Get', 'NID')
Local $hTimer = TimerInit()
Local $sNID
While 1
$sNID = _WD_Cookies($sSession, 'Get', 'NID')
If Not @error Or TimerDiff($hTimer) > 5 * 1000 Then ExitLoop
Sleep(100) ; this cookie may not exist at start, may appear later when website will be estabilished, so there is need to wait on @error and try again
WEnd
ConsoleWrite("wd_demo.au3: (" & @ScriptLineNumber & ") : Cookie obtained 'NID' : " & $sNID & @CRLF)

Local $sName = "TestName"
Expand Down