0

I noticed log and report of robot framework ride as inactive on machine which I am connecting remotely. Could you please tell me how to make this two icon active?enter image description

Shoaib Akhtar
  • 1,393
  • 5
  • 17
  • 46
  • I had this issue a while back when I used RIDE. I am not sure if it was a coincidence or not, but try pointing to a different directory for each file using the arguments input field. For example: `pybot -N RIDE_Test -r -l -o ` If I remember correctly this worked for me.. – Goralight Jan 03 '17 at 13:14
  • Did that work? Or has something else helped you? – Goralight Jan 04 '17 at 10:56
  • No, no success yet. Are you suggesting to me try this pybot -N RIDE_Test -r -l -o in command prompt? If yes then it is not working there, I am getting error message – Shoaib Akhtar Jan 05 '17 at 06:04
  • Im suggesting you enter that line, in the Arguments Text Box below the 2 buttons. and where it says enter a Path for the files to be generated in. For example: `C:\NewFolder\AutomationLogs`. Once that has been inputted, hit play, like you normally would, and the buttons should become available - Hopefully. – Goralight Jan 05 '17 at 09:16

1 Answers1

1

Place this line inside your "Arguments" input within RIDE; just below the two buttons.

--outputdir C:/AutomationLogs --timestampoutputs

I think you need to place the files in a non temp directory for RIDE to recognise what they are - or something like that.

Goralight
  • 2,067
  • 6
  • 25
  • 40