Initial problem we face is ,we cannot set profile for individual tap plan , because once we set the profile it will be for all the tapplans.
ComponentSettings.SettingsDirectoryRoot = profLocation;
Is there any solution that we can try to load 4 instance at same time.
Will there be any other issues or we cannot do this way?
ComponentSettings are ‘session local variables’, which means they are global, but within the context of the current session. Any ‘TapThread’ started inside the session inherits the session as well.
using(Session.Create(SessionOptions.OverlayComponentSettings)){
// in here, a new session is created, you can modify all component settings, including(i believe) the profile.
// let's set the profile inside the session:
ComponentSettings.SettingsDirectoryRoot = profLocation;
}
// outside the session, we revert back to the previous session / component settings.
Hi, I like your solution with parallel testing, from what I see in the pictures. Good work!
Do you like to share this solution? Maybe to make the UI even better in a community?
Regards Evert Huijben
We have hosted our product in the following location
You can have a Free Trial of the product.
After installing PTEM, Sample code for Operator UI (Single Instance) will be available in the following location.
I installed this, but I cannot find Keysight.OpenTap.Plugins.Extensions.dll which is used by sample UI code. Even searched in keysight website no result.