Commit 9b304850 9b3048506c8917f1e59e1a88287ae6eda9dad344 by Christian Gerdes

Added passIfNotFound plugin parameter with value False when AddExtractionRule is…

… used from Result View
1 parent 32fb064e
......@@ -348,6 +348,8 @@ namespace WebTest.WebService.Plugin.ResultTab
extractTextReference.Properties.Add(new PluginOrRuleProperty("XPathToSearch", this.XPathTextBox.Text));
extractTextReference.Properties.Add(new PluginOrRuleProperty("Index", "0"));
extractTextReference.Properties.Add(new PluginOrRuleProperty("ExtractRandomMatch", "False"));
// Added new passIfNotFound
extractTextReference.Properties.Add(new PluginOrRuleProperty("passIfNotFound", "False"));
requestInWebTest.ExtractionRuleReferences.Add(extractTextReference);
......