Hi, I want to know if there is any difference of two cases below.
case1: using SendCommand
scripting.SendCommand(command)
case2: using Send(FunctionKey.Enter)
scripting.Send(command)
scripting.Send(FunctionKey.Enter)
In AIX7.2, response timeout error occurred.
(After sending command, I used ReadUntilPrompt or ReadUntil(ScriptEvent.Prompt). I did DetectPrompt beforehand.)
It looks like case1 working well, but case2 not working.
In command history, I found the command in case1, but in case2 I could not find the command.
So I think FunctionKey.Enter doesn`t work well in some environment.
But then, how SendCommand working well?