Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
titleImportant Note

By default, TFS/Azure DevOps considers settings provided in the .runsettings file while test case execution. It is important to have this file in your source code of the application under test so that TFS can access and use settings provided in this file while executing Qualitia automated test cases.

  1. Copy the content provided in the box below, add it in an empty file.
  2. Save this file in the source code directory with .runsettings extension.

Code Block
languagexml
themeEclipse
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<TestRunParameters>
    <Parameter name="QualitiaRuntimeSettings" value="key=value" />
</TestRunParameters>
</RunSettings>


The same file can also be used to update the environment variables runtime which were created and used while developing test cases in Qualitia automation studio.   

Add the desired values in key=value pairs against QualitiaEnvironmentSettings in the .runtimesettings file in the following format and you are good to go. 


Code Block
<Parameter name="QualitiaEnvironmentSettings" value="key1=value1;key2=value2;" 

Configuring Visual Studio Test Task

...