- FileName: file name, which is the directory where the information is stored, can be relative or absolute (for example: D:\ceshi). TXT)
- File encoding:csv files encoded, can not be filled
- Variable Names: Variable name, multiple variables separated by ",". Variables using Format ${oa_vendingmachinenum} and ${name}
- Delimiter in Delimiter:csv file (with "\ t" instead of TAB key) (Usually, the delimiter is a comma)
- Allow quoted data: whether to permit referencing (not yet clear)
- Recycle on EOF: At the end of the file, whether to iterate through the parameters, Options: True and False. Because the CSV Data Set config is read one line at a time, it is split into a number of variables to a thread, and if the number of threads exceeds the number of record lines in the text, you can choose to read from the beginning
- Stop thread on EOF: At the end of the file, whether to stop threads, options: True and False
- When recycle on EOF is selected true, stop thread on EOF chooses true and false without any meaning, in layman's words, in front of the control of the nonstop loop read, back again to let stop or run no meaning
- When recycle on EOF selects Flase, Stop thread on EOF chooses True, thread 4, Parameter 3, then only 3 times requested
- When recycle on EOF selects Flase, the Stop thread on EOF chooses Flase, thread 4, Parameter 3, then 4 times is requested, but 4th time no arguments are desirable, not allowed to loop, so 4th request error
8. Sharing mode: Shared mode, all threads– for all threads, current thread group-currently threads group, current thread-present thread. In contrast to the iterations in this place and the LoadRunner, the test results are as follows:
- All threads: For all threads in the test plan, if thread 1 to thread n (n>1), threads 1 takes a value, thread 2 takes the next line in the CSV file, which is not the same row as thread 1.
- Current thread Group: Currently threads groups, assuming thread group A, thread Group B, a group within a wired thread A1 to thread an, threads in Group B B1 to thread bn. The situation is: thread A1 fetch to line 1th, thread A2 take 2nd line, now B1 take 1th line, thread B2 take 2nd row.
- Current thread: currently threads. Assuming that the test plan is wired 1 through thread n (n>1), thread 1 takes line 1th and thread 2 also takes line 1th.
CSV Data set config configuration