Automatically write content by applying WriteText instruction of RoutineBot
RoutineBot is an
automation software for automation of any routine task, such as automated
GUI testing
- Use WriteText function to automatically write certain text to the text file
- Automated writing of content
- RoutineBot program can work as a robot, which will write text
- Write text from your test script
- The RoutineBot helps testers to automatize file writing
- Automate content writing process
- Make your script to write content
- Resolve routine job of text writing
| Command |
Description |
How can it help? |
|
WriteText |
The function will
write a certain text to certain file |
The function has three parameters:
- File name to write
- The text to write
- Append (1) or rewrite file (0)
Example:
- WriteText('C:\test.txt','text',1); // will append 'text'
string to the file C:\test.txt
|
|