Good afternoon my friends, today eve has undergone an update and I noticed that the station panel has changed, the Undock buttons have changed, does anyone know how the new command line is for him to click this button?
Currently my code is as follows.
public class UndockTask : IBotTask
{
public IMemoryMeasurement MemoryMeasurement;
public IEnumerable<IBotTask> Component => null;
public IEnumerable<MotionParam> Effects
{
get
{
if (MemoryMeasurement?.IsUnDocking ?? false)
{
yield break;
}
if (!(MemoryMeasurement?.IsDocked ?? false))
{
yield break;
}
yield return MemoryMeasurement?.WindowStation?.FirstOrDefault()?.UndockButton?.MouseClick(BotEngine.Motor.MouseButtonIdEnum.Left);
}
}
}
}