How Can I get all supported step types by OpenTAP API?

I am trying to write a new GUI editor.exe by WPF.
When the user click “Add Step” button, I need to show all supported types of Step in a window.
How Can I get all supported step types by OpenTAP API? Thanks.

1 Like

The easiest is probably to do what the TUI does: opentap-tui/NewPluginWindow.cs at main · StefanHolst/opentap-tui · GitHub

The value for PluginType can be found by calling e.g TypeData.FromTypeData(typeof(ITestStep)).

1 Like