Jump to content

Search the Community

Showing results for tags 'invalid argument'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. This call works in my script Local $sURL = 'http://www.bfgp.uk/2024-30.htm' _WD_Navigate($sSession, $sURL) $sBody = _WD_GetSource($sSession) This call doesn't: Local $sURL = 'lse.co.uk/share-fundamentals.html?shareprice=AAF&share=Airtel-Africa' _WD_Navigate($sSession, $sURL) $sBody = _WD_GetSource($sSession) If I paste either of these URLs into the address bar of Edge and Chrome they open the requested page without issue so I'm guessing that the equals signs in the "?shareprice=AAF&share=Airtel-Africa" part of the URL are the problem. Can anybody advise what I can do to fix this problem? The relevant console output is: _WD_IsLatestRelease ==> Success [0] : True _WD_Startup: OS: WIN_11 X64 22631 _WD_Startup: AutoIt: 3.3.16.1 _WD_Startup: Webdriver UDF: 1.4.0 (Up to date) _WD_Startup: WinHTTP: 1.6.4.2 _WD_Startup: Driver: C:\Program Files (x86)\AutoIt3\Include\chromedriver.exe (32 Bit) _WD_Startup: Params: --port=9515 --verbose --log-path="D:\Data\_Temp1\ShareQualityCoding\chrome.log" _WD_Startup: Port: 9515 _WD_Startup: Command: "C:\Program Files (x86)\AutoIt3\Include\chromedriver.exe" --port=9515 --verbose --log-path="D:\Data\_Temp1\ShareQualityCoding\chrome.log" _WD_Startup ==> Success [0] __WD_Post ==> Success [0] : HTTP status = 200 _WD_CreateSession ==> Success [0] : 7aba2633a36a7997f745ee2772958cfc __WD_Post ==> Success [0] : HTTP status = 200 _WD_Window ==> Success [0] : Parameters: Command=rect Option={"x":0,"y":0,"width":1300,"height":1400} __WD_Post ==> Success [0] : HTTP status = 200 _WD_Navigate ==> Success [0] : Parameters: URL=http://www.bfgp.uk/2024-30.htm __WD_Get ==> Success [0] : HTTP status = 200 _WD_GetSource ==> Success [0] __WD_Post ==> Invalid argument [5] : HTTP status = 400 _WD_Navigate ==> Invalid argument [5] : Parameters: URL=lse.co.uk/share-fundamentals.html?shareprice=AAF&share=Airtel-Africa __WD_Get ==> Success [0] : HTTP status = 200 _WD_GetSource ==> Success [0]
×
×
  • Create New...