Prasanna Kumar
Prasanna Kumar

Reputation: 35

Appending new data in remote file using robotframework

I am trying to append a data in to a file which is a remote server. There is a keyword in robotframework that can append data in to a file locally(that is on the same server where I am executing the script). As of now I am using remote server library to execute commands on the remote console.

How to get access that file using remote server? Hot to append data using remote server?

Upvotes: 1

Views: 663

Answers (1)

Verv
Verv

Reputation: 2473

You may want to use Robot Framework's SSH library to do this. Looking at your previous questions, it looks like you're already using this library.

As for writing to the file, these questions may help:

Upvotes: 1

Related Questions