1 | public void configure(TestElement el) {↵ | | |
|
2 | super.configure(el);↵ | | |
|
3 | SoapSampler sampler = (SoapSampler) el;↵ | | |
|
4 | urlField.setText(sampler.getURLData↵ | | 1 | if (extractor instanceof RegexExtractor) {↵
|
| | | 2 | RegexExtractor regex = (RegexExtractor) extractor;↵
|
5 | ());↵ | | 3 | regex.setUseField(group.getSelection().getActionCommand()); ↵
|
6 | sendSoapAction.setSelected(sampler.getSendSOAPAction());↵ | | 4 | regex.setRefName(refNameField.getText());↵
|
7 | soapAction.setText(sampler.getSOAPAction());↵ | | 5 | regex.setRegex(regexField.getText());↵
|
8 | soapXml.setText(sampler.getXmlData());↵ | | 6 | ↵
|
9 | soapXmlFile.setFilename(sampler.getXmlFile());↵ | | |
|
10 | useKeepAlive.setSelected(sampler.getUseKeepAlive↵ | | 7 | regex.setTemplate(templateField.getText());↵
|
| | | 8 | regex.setDefaultValue(defaultField.getText());↵
|
11 | ());↵ | | 9 | regex.setMatchNumber(matchNumberField.getText());↵
|
12 | | | 10 |
|