You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/di/jmeter/config/gui/ExtendedCsvDataSetConfigGui.java
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -204,6 +204,24 @@ private void init() {
204
204
allocateLabel1.setEnabled(false);
205
205
allocateLabel2.setEnabled(false);
206
206
allocateRButton.setSelected(false);
207
+
/*
208
+
* tooltip goes here
209
+
*/
210
+
filenameField.setToolTipText("Name of the file that holds the csv data (relative or absolute filename)");
211
+
browseButton.setToolTipText("Browse...");
212
+
viewFileButton.setToolTipText("View/Edit file in system default editor");
213
+
fileEncodingCBox.setToolTipText("The character set encoding used in the file");
214
+
variableNamesField.setToolTipText("List your variable names in order to match the order of columns in your csv data. Keep it empty to use the first line of the file for variable names");
215
+
ignoreFirstLineCBox.setToolTipText("Ignore first line of CSV file, it will only be used used if Variable Names is not empty, if Variable Names is empty the first line must contain the headers");
216
+
delimiterField.setToolTipText("Enter the delimiter ('\\t' for tab)");
217
+
quotedDataCBox.setToolTipText("Allow CSV data values to be quoted?");
218
+
selectRowCBox.setToolTipText("Options on reading file");
219
+
updateValueCBox.setToolTipText("Options on update parameter during run");
220
+
ooValueCBox.setToolTipText("Options while reaching EOF");
221
+
sharingModeCBox.setToolTipText("Select which threads share the same file pointer");
222
+
autoAllocateRButton.setToolTipText("Automatically calculates the blocksize for each thread(s)");
223
+
allocateRButton.setToolTipText("Custom allocation of blocksize for each thread(s)");
224
+
blockSizeField.setToolTipText("Blocksize value for custom allocation of threads");
0 commit comments