Jump to content

baselz

Members
  • Posts

    6
  • Joined

  • Last visited

baselz's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I run curl command using this function Local $result = Run(@ComSpec & " /c " & $curlCommand, "", @SW_HIDE, $STDOUT_CHILD) ProcessWaitClose($result) the Json is valid
  2. Hi, I'm failing to send Curl post command using AutoIT, basically I believe that the reason is having '!' special character in URL I would be glad for help ; Construct JSON data Local $jsonData = '{"exit_status": ' & $exitStatus & ', "plugin_output": "' & $pluginOutput & '"}' ; Send CURL command Local $curlCommand = 'curl -X POST -k -H "Content-type: application/json" -H "Accept: application/json" --data "' & $jsonData & '" "https://<URL>/v1/actions/process-check-result?service=.com!passive.setEnv_check"'
  3. @InnIit work, you rock
  4. @ioa747I got the same failure, unfortunately log: 09:55:20 - Installer started successfully 09:55:25 - Clicked on the Next button 09:55:26 - Next button found but it's not clicked
  5. @Zednathnx for your help but it did NOT help, although it's on Focus, it's just not clicked
  6. Hi, ControlClick does not work although by log it's clicked, but not actually, it does not WinWaitActive("Setup - CPGit") $res = ControlClick("Setup - CPGit","&Next >","TNewButton1") If $res Then LogMessage("Clicked on the Next button") Else Send("{ENTER}") LogMessage("Clicked enter") EndIf
×
×
  • Create New...