"Automation Technical Guide" out of date

Hello everybody,

Automation Technical Guide | Unreal Engine 5.2 Documentation is out of date as FEngineAutomationTestUtilities no longer exists.

Maps can instead be loaded with the bool AutomationOpenMap(const FString& MapName) function found in AutomationCommon.h. The function returns whether the map loading has been deferred (i.e., when the AutomationCommon::OnEditorAutomationMapLoad delegate is bound.)

Hope this helps someone else out there.

Cheers,

Thanks, for this.

Using this method requires the actual path of the level you are trying to load

AutomationOpenMap(TEXT("/Game/Tests/MyAutoTestingLevel"));

I wrote an up to date guide. Find it on my blog:

https://blog…de/ue4-automation-testing/

1 Like