Hi, How can I set a config setting for an entire project, instead for one wbtest at a time?
At the moment I'm doing something like:
<target name="wt.testInWork">
<webtest name="test1">
<config>
<option name="ThrowExceptionOnScriptError" value="false"/>
</config>
....the test itself
</webtest>
<webtest name="test2">
<config>
<option name="ThrowExceptionOnScriptError" value="false"/>
</config>
....the test itself
</webtest>
Etc...
</target>
How can I define the config only once?

