1 | public void configure(TestElement el) {↵ | | |
|
2 | super.configure(el);↵ | | |
|
3 | SoapSampler sampler = (SoapSampler) el;↵ | | |
|
4 | url↵ | | 1 | if (c instanceof CounterConfig) {↵
|
| | | 2 | CounterConfig config = (CounterConfig) c;↵
|
| | | 3 | config.setStart(startField.getText());↵
|
5 | Field.setText(sampler.getURLData());↵ | | 4 | // Bug 22820 if (endField.getText(↵
|
6 | sendSoapAction.setSelected(sampler.getSendSOAPAction());↵ | | |
|
7 | soapAction.setText(sampler.getSOAPAction());↵ | | |
|
8 | soapXml.setText(sampler.getXmlData↵ | | 5 | ).length() > 0)↵
|
| | | 6 | {↵
|
| | | 7 | config.setEnd(endField.getText());↵
|
| | | 8 | }↵
|
| | | 9 | config.setIncrement(incrField.getText());↵
|
9 | ());↵ | | 10 | config.setVarName(varNameField.getText());↵
|
10 | soapXmlFile.setFilename(sampler.getXmlFile());↵ | | 11 | ↵
|
11 | useKeepAlive.setSelected(sampler.getUseKeepAlive↵ | | 12 | config.setFormat(formatField.getText());↵
|
12 | ());↵ | | 13 | config.setIsPerUser(perUserField.isSelected());↵
|
13 | | | 14 |
|