ContributionsMost RecentMost LikesSolutionsRe: Setting Network Suite Variables on SlaveYes the patch succesfully resolved this issue, thanks.Re: Setting Network Suite Variables on SlaveI've set my keyword test paramater with a networksuite variable that has a default value of 'default.com'. I did a simple test to prove this issue like this: The slave sets the networksuite variable to 'somethingelse.com'. The slave executes my keywordtest that opens browser and navigates to a url. The url uses the networksuite variable as I stated above. The browser navigates to 'default.com'. During this keyword test I also post the networksuite variable to the log and the log shows 'somethingelse.com'. What gives? Is this a bug in the software? I've conducted the test and gotten the same results using 'Temporary' and 'Persistent' networksuite variable. I've tried setting the networksuite variable from the master also, and got the same results.Re: Export all to html on pre-mature test run terminationIf I export everything inside the OnLogError event I don't get the current error posted to the log because I exported inside the event and not after it. The event must complete to post its error to the log.Re: Setting Network Suite Variables on SlaveI've thoroughly read the documentation and here is my use case in more detail that I can still not get to work: I have a master project and slave project. The master and slave have some network suite variables defined. The master has a keyword test that runs a script. The script for now is simply this: function Main() { NetworkSuite.Hosts.ItemByName("qa1auto").CopyProjectToSlave(); CommandLineArgs(); for (var i = 0; i < NetworkSuite.Jobs.Count; i++) { NetworkSuite.Jobs(i).Run(true); } The CommandLineArgs function simply sets those network suite vairables to whatever I need. Example: NetworkSuite.Variables.urlMainTest = "submydomain.mydomain.com"; There's currently 1 Job with 1 Task and the task simply runs my slave project. The slave project is just a set of test items (keyword tests for our software). 1 of those keyword tests for instance has an operation param of: NetworkSuite.Variables.urlMainTest There is where my problem lies, that variable is not being updated on the slave computer (in the slave project). I've tried copying my scripts to slave both before and after setting the networksuite variables and still no luck. What am I missing?Setting Network Suite Variables on SlaveI can't figure out how to accomplish this simple need: We have some urls that are explicitly defined in a few keyword tests. I've tried using Project variables and Network Suite variables (both temporary and persistent) as the values in these keyword tests. I pass a url via command line during our automated run since it uses a different url than default. Then I assign that to the variables in script. It seems to update the variable in the instance of the master project but the slave doesn't get updated. I've read through all documentation I can find on this and have followed the concepts/examples to no avail. Can anyone tell me what am I doing wrong? I can supply more info on my failed strategies if needed. Using version 9.3. Thanks in advance.SolvedExport all to html on pre-mature test run terminationWe use Jenkins and require html format to publish test results. So I have an export script run at the end of our testitems sequence, but that doesn't run if the test run fails before completion. I've yet to find a good solution for exporting when this happens. Right now I've tapped into the 'OnLogError' event to do it which is definitely not the correct strategy. I first tried using 'OnStopTest' event to check but that slows down the test run way too much. Also tried tapping into networksuite events but that's not 'slave-side' so no luck there. Can someone steer me in the right direction? Thanks.