go to post Heloisa Ramalho · Jan 23, 2018 Have you tried using the numeric form? They are ≤ and ≥ for these characters.Let us know if it works.Heloisa
go to post Heloisa Ramalho · Jan 17, 2018 This is probably a Windows security issue in the desktop interaction, blocking the Adobe executable.You can try trouble-shooting on the Adobe side and on the Windows side. There are tips on these pages:https://forums.adobe.com/thread/1042132https://blogs.msdn.microsoft.com/patricka/2011/03/14/troubleshooting-int...Hope it helps,Heloisa
go to post Heloisa Ramalho · Sep 7, 2017 Hi Nagel,You can add a timer to the page and when the timer fires, refresh the tablePane with table.refreshContents() where 'table' is the table object. You may also want to clear the selection if any.Heloisa
go to post Heloisa Ramalho · May 23, 2017 I have used %UnitTest.TestProduction to automate Ensemble testing. It can start a Production, adjust settings, etc. The class documentation contains explanations. Unfortunately I am not familiar with Selenium so cannot answer about that tool.
go to post Heloisa Ramalho · May 8, 2017 The way I see it working in 2017.1, %OverrideGuidAssignment only sets the in-memory value of the object's GUID to the value passed as the argument and returns the same value. It does not validate the value. If the object already has a GUID, it will not be changed. New objects for which the user did not provide a GUID will have one assigned with $system.Util.CreateGUID() unless the user invoked %OverrideGuidAssignment(userGUID) before saving.In order to know if the intended assignment was successful, you must compare it with the object's GUID after save to see if the assignment was successful or not. If they are different, then it was not overridden, probably because it was not a new object.