How to use AddProperty method of Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter class

Best Vstest code snippet using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter.AddProperty

TestResultConverter.cs

Source:TestResultConverter.cs Github

copy

Full Screen

...117 // Starting 15.1.0, test platform sends in default values for properties that were not set. This is not118 // a breaking change.119 // TestResult.Outcome120 writer.WriteStartObject();121 AddProperty(writer, TestResultProperties.Outcome, serializer);122 writer.WriteValue((int)testResult.Outcome);123 writer.WriteEndObject();124 // TestResult.ErrorMessage125 writer.WriteStartObject();126 AddProperty(writer, TestResultProperties.ErrorMessage, serializer);127 writer.WriteValue(testResult.ErrorMessage);128 writer.WriteEndObject();129 // TestResult.ErrorStackTrace130 writer.WriteStartObject();131 AddProperty(writer, TestResultProperties.ErrorStackTrace, serializer);132 writer.WriteValue(testResult.ErrorStackTrace);133 writer.WriteEndObject();134 // TestResult.DisplayName135 writer.WriteStartObject();136 AddProperty(writer, TestResultProperties.DisplayName, serializer);137 writer.WriteValue(testResult.DisplayName);138 writer.WriteEndObject();139 // TestResult.ComputerName140 writer.WriteStartObject();141 AddProperty(writer, TestResultProperties.ComputerName, serializer);142 writer.WriteValue(testResult.ComputerName ?? string.Empty);143 writer.WriteEndObject();144 // TestResult.Duration145 writer.WriteStartObject();146 AddProperty(writer, TestResultProperties.Duration, serializer);147 writer.WriteValue(testResult.Duration);148 writer.WriteEndObject();149 // TestResult.StartTime150 writer.WriteStartObject();151 AddProperty(writer, TestResultProperties.StartTime, serializer);152 writer.WriteValue(testResult.StartTime);153 writer.WriteEndObject();154 // TestResult.EndTime155 writer.WriteStartObject();156 AddProperty(writer, TestResultProperties.EndTime, serializer);157 writer.WriteValue(testResult.EndTime);158 writer.WriteEndObject();159 foreach (var property in testResult.GetProperties())160 {161 serializer.Serialize(writer, property);162 }163 writer.WriteEndArray();164 writer.WriteEndObject();165 }166 private static void AddProperty(JsonWriter writer, TestProperty property, JsonSerializer serializer)167 {168 writer.WritePropertyName("Key");169 serializer.Serialize(writer, property);170 writer.WritePropertyName("Value");171 }172 }173}...

Full Screen

Full Screen

AddProperty

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;7using Microsoft.VisualStudio.TestPlatform.ObjectModel;8using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;9using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;10using System.Reflection;11{12 [FriendlyName("MyLogger")]13 {14 public void Initialize(TestLoggerEvents events, string testResultsDir)15 {16 events.TestResult += this.Events_TestResult;17 }18 private void Events_TestResult(object sender, TestResultEventArgs e)19 {20 TestResult testResult = e.Result;21 TestResultConverter.AddProperty(testResult, "MyProperty", "MyValue");22 }23 }24}25using System;26using System.Collections.Generic;27using System.Linq;28using System.Text;29using System.Threading.Tasks;30using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;31using Microsoft.VisualStudio.TestPlatform.ObjectModel;32using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;33using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;34using System.Reflection;35{36 [FriendlyName("MyLogger")]37 {38 public void Initialize(TestLoggerEvents events, string testResultsDir)39 {40 events.TestResult += this.Events_TestResult;41 }42 private void Events_TestResult(object sender, TestResultEventArgs e)43 {44 TestResult testResult = e.Result;45 TestResultConverter.AddProperty(testResult, "MyProperty", "MyValue");46 }47 }48}49using System;50using System.Collections.Generic;51using System.Linq;52using System.Text;53using System.Threading.Tasks;54using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;55using Microsoft.VisualStudio.TestPlatform.ObjectModel;56using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;57using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;58using System.Reflection;59{60 [FriendlyName("MyLogger")]61 {62 public void Initialize(TestLoggerEvents events, string testResultsDir)63 {64 events.TestResult += this.Events_TestResult;65 }66 private void Events_TestResult(object sender, TestResultEventArgs e)67 {68 TestResult testResult = e.Result;69 TestResultConverter.AddProperty(testResult, "MyProperty", "MyValue

Full Screen

Full Screen

AddProperty

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;7{8 {9 static void Main(string[] args)10 {11 TestResultConverter trc = new TestResultConverter();12 trc.AddProperty("Key", "Value");13 }14 }15}16using System;17using System.Collections.Generic;18using System.Linq;19using System.Text;20using System.Threading.Tasks;21using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;22{23 {24 static void Main(string[] args)25 {26 TestResultConverter trc = new TestResultConverter();27 trc.AddProperty("Key", "Value");28 }29 }30}31using System;32using System.Collections.Generic;33using System.Linq;34using System.Text;35using System.Threading.Tasks;36using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;37{38 {39 static void Main(string[] args)40 {41 TestResultConverter trc = new TestResultConverter();42 trc.AddProperty("Key", "Value");43 }44 }45}46using System;47using System.Collections.Generic;48using System.Linq;49using System.Text;50using System.Threading.Tasks;51using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;52{53 {54 static void Main(string[] args)55 {56 TestResultConverter trc = new TestResultConverter();57 trc.AddProperty("Key", "Value");58 }59 }60}61using System;62using System.Collections.Generic;63using System.Linq;64using System.Text;65using System.Threading.Tasks;66using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;67{68 {69 static void Main(string[] args)70 {

Full Screen

Full Screen

AddProperty

Using AI Code Generation

copy

Full Screen

1using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities;2using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;3using Microsoft.VisualStudio.TestPlatform.ObjectModel;4using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;5using System;6using System.Collections.Generic;7using System.Linq;8using System.Text;9using System.Threading.Tasks;10{11{12static void Main(string[] args)13{14testResult.Outcome = TestOutcome.Failed;15TestResultConverter.AddProperty(testResult, "test", "test");16}17}18}19at System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)20at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)21at Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter.AddProperty(TestResult testResult, String propertyName, String propertyValue)22using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities;23using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;24using Microsoft.VisualStudio.TestPlatform.ObjectModel;25using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;26using System;27using System.Collections.Generic;28using System.Linq;29using System.Text;30using System.Threading.Tasks;31{32{33static void Main(string[] args)34{35testResult.Outcome = TestOutcome.Failed;36TestResultConverter.AddProperty(testResult, "test", "test");37TestResultConverter.AddProperty(testResult, "test", "test");38}39}40}

Full Screen

Full Screen

AddProperty

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;7{8 {9 static void Main(string[] args)10 {11 TestResultConverter trc = new TestResultConverter();12 trc.AddProperty("Key", "Value");13 }14 }15}16using System;17using System.Collections.Generic;18using System.Linq;19using System.Text;20using System.Threading.Tasks;21using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;22{23 {24 static void Main(string[] args)25 {26 TestResultConverter trc = new TestResultConverter();27 trc.AddProperty("Key", "Value");28 }29 }30}31using System;32using System.Collections.Generic;33using System.Linq;34using System.Text;35using System.Threading.Tasks;36using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;37{38 {39 static void Main(string[] args)40 {41 TestResultConverter trc = new TestResultConverter();42 trc.AddProperty("Key", "Value");43 }44 }45}46using System;47using System.Collections.Generic;48using System.Linq;49using System.Text;50using System.Threading.Tasks;51using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;52{53 {54 static void Main(string[] args)55 {56 TestResultConverter trc = new TestResultConverter();57 trc.AddProperty("Key", "Value");58 }59 }60}61using System;62using System.Collections.Generic;63using System.Linq;64using System.Text;65using System.Threading.Tasks;66using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;67{68 {69 static void Main(string[] args)70 {

Full Screen

Full Screen

AddProperty

Using AI Code Generation

copy

Full Screen

1using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities;2using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;3using Microsoft.VisualStudio.TestPlatform.ObjectModel;4using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;5using System;6using System.Collections.Generic;7using System.Linq;8using System.Text;9using System.Threading.Tasks;10{11{12static void Main(string[] args)13{14testResult.Outcome = TestOutcome.Failed;15TestResultConverter.AddProperty(testResult, "test", "test");16}17}18}19at System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)20at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)21at Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter.AddProperty(TestResult testResult, String propertyName, String propertyValue)22using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities;23using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;24using Microsoft.VisualStudio.TestPlatform.ObjectModel;25using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;26using System;27using System.Collections.Generic;28using System.Linq;29using System.Text;30using System.Threading.Tasks;31{32{33static void Main(string[] args)34{35testResult.Outcome = TestOutcome.Failed;36TestResultConverter.AddProperty(testResult, "test", "test");37TestResultConverter.AddProperty(testResult, "test", "test");38}39}40}

Full Screen

Full Screen

AddProperty

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;7using Microsoft.VisualStudio.TestPlatform.ObjectModel;8{9 {10 static void Main(string[] args)11 {12 TestResultConverter testResultConverter = new TestResultConverter();13 testResultConverter.AddProperty(testResult, "TestProperty", "TestValue");14 }15 }16}

Full Screen

Full Screen

AddProperty

Using AI Code Generation

copy

Full Screen

1using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;2using Microsoft.VisualStudio.TestPlatform.ObjectModel;3using System;4using System.Collections.Generic;5using System.Linq;6using System.Text;7using System.Threading.Tasks;8{9 {10 static void Main(string[] args)11 {12 TestResult testResult = new TestResult();13 testResult.TestCase = new TestCase();14 testResult.TestCase.DisplayName = "Test1";15 testResult.TestCase.FullyQualifiedName = "Test1";16 testResult.TestCase.Id = Guid.NewGuid();17 testResult.Outcome = TestOutcome.Passed;18 testResult.Duration = new TimeSpan(1000000);19 TestResultConverter.AddProperty(testResult, "TestProperty", "TestValue");20 }21 }22}23using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;24using Microsoft.VisualStudio.TestPlatform.ObjectModel;25using System;26using System.Collections.Generic;27using System.Linq;28using System.Text;29using System.Threading.Tasks;30{31 {32 static void Main(string[] args)33 {34 TestResult testResult = new TestResult();35 testResult.TestCase = new TestCase();36 testResult.TestCase.DisplayName = "Test1";37 testResult.TestCase.FullyQualifiedName = "Test1";38 testResult.TestCase.Id = Guid.NewGuid();39 testResult.Outcome = TestOutcome.Passed;40 testResult.Duration = new TimeSpan(1000000);41 TestResultConverter.AddProperty(testResult, "TestProperty", "TestValue");42 Dictionary<string, object> properties = TestResultConverter.GetProperties(testResult);43 foreach (var item in properties)44 {45 Console.WriteLine("Key: {0}, Value: {1}", item.Key, item.Value);46 }47 }48 }49}

Full Screen

Full Screen

AddProperty

Using AI Code Generation

copy

Full Screen

1public static void Main(string[] args)2{3 Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter testResultConverter = new Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter();4 Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult testResult = new Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult();5 testResultConverter.AddProperty(testResult, "TestProperty", "TestValue");6}7public static void Main(string[] args)8{9 Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter testResultConverter = new Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter();10 Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult testResult = new Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult();11 testResultConverter.AddProperty(testResult, "TestProperty", "TestValue");12}13public static void Main(string[] args)14{15 Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter testResultConverter = new Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter();16 Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult testResult = new Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult();17 testResultConverter.AddProperty(testResult, "TestProperty", "TestValue");18}19public static void Main(string[] args)20{21 Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter testResultConverter = new Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter();22 Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult testResult = new Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult();23 testResultConverter.AddProperty(testResult, "TestProperty", "TestValue");24}25public static void Main(string[] args)26{27 Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter testResultConverter = new Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization.TestResultConverter();28 Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult testResult = new Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult();29 testResultConverter.AddProperty(testResult, "TestProperty", "TestValue");30}

Full Screen

Full Screen

AddProperty

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;7using Microsoft.VisualStudio.TestPlatform.ObjectModel;8using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;9using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;10using Microsoft.VisualStudio.TestPlatform.ObjectModel.Adapter;11{12 [FileExtension(".cs")]13 {14 public void DiscoverTests(IEnumerable<string> sources, IDiscoveryContext discoveryContext, IMessageLogger logger, ITestCaseDiscoverySink discoverySink)15 {16 testCase.DisplayName = "test1";17 testCase.CodeFilePath = "1.cs";18 testCase.LineNumber = 1;19 discoverySink.SendTestCase(testCase);20 }21 public void RunTests(IEnumerable<string> sources, IRunContext runContext, IFrameworkHandle frameworkHandle)22 {23 testCase.DisplayName = "test1";

Full Screen

Full Screen

AddProperty

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using System.Linq;4using System.Text;5using System.Threading.Tasks;6using Microsoft.VisualStudio.TestPlatform.ObjectModel;7using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;8{9 {10 static void Main(string[] args)11 {12 TestResult testResult = new TestResult();13 testResult.Outcome = TestOutcome.Failed;14 testResult.ErrorMessage = "Error Message";15 testResult.ErrorStackTrace = "Error Stack Trace";16 testResult.DisplayName = "Test Case Name";17 TestResultConverter.AddProperty(testResult, "TestResult", "Value");18 }19 }20}21using System;22using System.Collections.Generic;23using System.Linq;24using System.Text;25using System.Threading.Tasks;26using Microsoft.VisualStudio.TestPlatform.ObjectModel;27using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;28{29 {30 static void Main(string[] args)31 {32 TestResult testResult = new TestResult();33 testResult.Outcome = TestOutcome.Failed;34 testResult.ErrorMessage = "Error Message";35 testResult.ErrorStackTrace = "Error Stack Trace";36 testResult.DisplayName = "Test Case Name";37 TestResultConverter.AddProperty(testResult, "TestResult", "Value");38 }39 }40}41using System;42using System.Collections.Generic;43using System.Linq;44using System.Text;45using System.Threading.Tasks;46using Microsoft.VisualStudio.TestPlatform.ObjectModel;47using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;48{49 {50 static void Main(string[] args)51 {52 TestResult testResult = new TestResult();53 testResult.Outcome = TestOutcome.Failed;54 testResult.ErrorMessage = "Error Message";55 testResult.ErrorStackTrace = "Error Stack Trace";56 testResult.DisplayName = "Test Case Name";57 TestResultConverter.AddProperty(testResult, "TestResult", "Value");58 }59 }60}61 testCase.LineNumber = 1;62 frameworkHandle.RecordStart(testCase);63 var testResult = new TestResult(testCase);64 testResult.Outcome = TestOutcome.Failed;65 testResult.ErrorMessage = "Test Failed";66 testResult.ErrorStackTrace = "Test Failed";67 TestResultConverter.AddProperty(testResult, "MyProperty1", "MyValue1");68 frameworkHandle.RecordResult(testResult);69 frameworkHandle.RecordEnd(testCase, TestOutcome.Failed);70 frameworkHandle.RecordStart(testCase);71 frameworkHandle.RecordResult(testResult);72 frameworkHandle.RecordEnd(testCase, TestOutcome.Failed);73 }74 public void RunTests(IEnumerable<TestCase> tests, IRunContext runContext, IFrameworkHandle frameworkHandle)75 {76 foreach (var testCase in tests)77 {78 frameworkHandle.RecordStart(testCase);79 var testResult = new TestResult(testCase);80 testResult.Outcome = TestOutcome.Failed;81 testResult.ErrorMessage = "Test Failed";82 testResult.ErrorStackTrace = "Test Failed";83 TestResultConverter.AddProperty(testResult, "MyProperty1", "MyValue1");84 frameworkHandle.RecordResult(test

Full Screen

Full Screen

AddProperty

Using AI Code Generation

copy

Full Screen

1using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;2using Microsoft.VisualStudio.TestPlatform.ObjectModel;3using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;4using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;5using System;6using System.Collections.Generic;7using System.Linq;8using System.Text;9using System.Threading.Tasks;10{11 {12 static void Main(string[] args)13 {14 TestResultConverter testResultConverter = new TestResultConverter();15 testResultConverter.AddProperty(testResult, "TestProperty", "TestValue");16 Console.WriteLine(testResult.Properties["TestProperty"]);17 Console.ReadLine();18 }19 }20}

Full Screen

Full Screen

AddProperty

Using AI Code Generation

copy

Full Screen

1using System;2using System.Collections.Generic;3using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;4{5 {6 static void Main(string[] args)7 {8 var tr = new TestResultConverter();9 tr.AddProperty("TestProperty1", "TestValue1");10 tr.AddProperty("TestProperty2", "TestValue2");11 var properties = tr.GetProperties();12 foreach(var p in properties)13 {14 Console.WriteLine(p.Key + " : " + p.Value);15 }16 }17 }18}19using System;20using System.Collections.Generic;21using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;22{23 {24 static void Main(string[] args)25 {26 var tr = new TestResultConverter();27 tr.AddProperty("TestProperty1", "TestValue1");28 tr.AddProperty("TestProperty2", "TestValue2");29 var properties = tr.GetProperties();30 foreach(var p in properties)31 {32 Console.WriteLine(p.Key + " : " + p.Value);33 }34 }35 }36}37using System;38using System.Collections.Generic;39using Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.Serialization;40{41 {42 static void Main(string[] args)43 {44 var tr = new TestResultConverter();45 tr.AddProperty("TestProperty1", "TestValue1");46 tr.AddProperty("TestProperty2", "TestValue2");47 var properties = tr.GetProperties();48 foreach(var p in properties)49 {50 Console.WriteLine(p.Key + " : " + p.Value);51 }52 }53 }54}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Vstest automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Most used method in TestResultConverter

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful