in reply to Expect.pm debugging in Windows

There is a Tk-gui for the debugger.

Never used it on win, never had to deal with expect.

See Devel::Ptkdb

The only free IDE I know with debugger integration is Emacs, but I doubt that's what you are looking for.

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery FootballPerl is like chess, only without the dice

Replies are listed 'Best First'.
Re^2: Expect.pm debugging in Windows
by bandros (Novice) on Apr 29, 2019 at 17:49 UTC

    Thanks so much for your reply! Yeah I have never used Perl in Windows (previously in a unix VM) or the Expect package. I will keep looking out online and see if I find anything - otherwise it might just be trial and error.

    My previous position I was actually doing test case development in Perl and this time around I am maintaining some already existing scripts so it will just be a bit of an adjustment getting to the point I'd like to be with a debugger and being able to execute the script so I can see output at each step of the code.

    I appreciate the timely response!

      I suppose you already tried a normal debugger run on the console and it fails because expect blocks STDIN and STDOUT.

      Ptkdb is your best try then, all IDE use the same approach to communicate to the debugger via sockets.

      If Ptkdb fails, all will fail.

      Cheers Rolf
      (addicted to the Perl Programming Language :)
      Wikisyntax for the Monastery FootballPerl is like chess, only without the dice