1 | public void modifyTestElement(TestElement s) {↵ | | |
|
2 | this.configureTestElemen↵ | | 1 | if (c instanceof CounterConfig) {↵
|
| | | 2 | CounterConfig config = (CounterConfig) c;↵
|
3 | t(s);↵ | | 3 | config.setStart(startField.getText());↵
|
4 | if (s instanceof SoapSampler) {↵ | | 4 | ↵
|
5 | SoapSampler sampler = (SoapSampler) s;↵ | | |
|
6 | sampler.setURLData(urlField.getText());↵ | | |
|
7 | sampler.setXmlData(soapXml↵ | | 5 | // Bug 22820 if (endField.getText().length() > 0)↵
|
| | | 6 | {↵
|
| | | 7 | config.setEnd(endField.getText());↵
|
| | | 8 | }↵
|
| | | 9 | config.setIncrement(incrField.getText());↵
|
8 | .getText());↵ | | 10 | config.setVarName(varNameField.getText());↵
|
9 | sampler.setXmlFile(soapXmlFile.getFilename());↵ | | 11 | ↵
|
10 | sampler.setSOAPAction(soapAction.getText());↵ | | |
|
11 | sampler.setSendSOAPAction(sendSoapAction.isSelected());↵ | | |
|
12 | sampler.setUseKeepAlive(useKeepAlive↵ | | 12 | config.setFormat(formatField.getText());↵
|
13 | .isSelected());↵ | | 13 | config.setIsPerUser(perUserField.isSelected());↵
|
14 | }↵ | | 14 |
|
15 | | | | |