1 | public void configure(TestElement el) {↵ | | 1 | public void configure(TestElement el) {↵
|
2 | super.configure(el);↵ | | 2 | super.configure(el);↵
|
3 | XPathExtractor xpe = (XPathExtractor) el;↵ | | 3 | ↵
|
4 | xpathQueryField.setText(xpe.getXPathQuery());↵ | | |
|
5 | defaultField.setText(xpe.getDefaultValue());↵ | | |
|
6 | refNameField.setText(xpe.getRefName());↵ | | |
|
7 | tolerant.setSelected(xpe.isTolerant↵ | | 4 | SoapSampler sampler = (SoapSampler) el;↵
|
| | | 5 | urlField.setText(sampler.getURLData());↵
|
| | | 6 | sendSoapAction.setSelected(sampler.getSendSOAPAction());↵
|
8 | ());↵ | | 7 | soapAction.setText(sampler.getSOAPAction());↵
|
9 | quiet.setSelected(xpe.isQuiet());↵ | | 8 | ↵
|
10 | showWarnings.setSelected(xpe.showWarnings());↵ | | |
|
11 | reportErrors.setSelected(xpe.reportErrors());↵ | | |
|
12 | nameSpace.setSelected(xpe.useNameSpace());↵ | | |
|
13 | setTidyOptions(tolerant.isSelected↵ | | 9 | soapXml.setText(sampler.getXmlData());↵
|
| | | 10 | soapXmlFile.setFilename(sampler.getXmlFile());↵
|
14 | ());↵ | | 11 | useKeepAlive.setSelected(sampler.getUseKeepAlive());↵
|
15 | | | 12 |
|