ContributionsMost RecentMost LikesSolutionsRe: HTML 5 custom data attribute and namemapping web page objects Here the quote from https://developer.mozilla.org/en-US/docs/Learn/HTML/Howto/Use_data_attributes "To get a data attribute through the dataset object, get the property by the part of the attribute name after data- (note that dashes are converted to camelCase)." So you should see "sbContext" attribute under the "..." of dataset property. Re: Windows 10, Edge, and the currentStyle in the object spy. I suppose the reason that your code if (GenerateReport_Btn.currentStyle.color == "#818181") does not work is that real value returned by Edge in this case is "rgb(129, 129, 129)". You can check this assumption by the code like this: Log.Message(GenerateReport_Btn.currentStyle.color) Re: Firefox 58 tests on a remote computer Please try the following: In Firefox navigate to about:config page (click "I accept the risk!" if asked), paste "security.sandbox.content.level" into search box, and check the value of the "security.sandbox.content.level" preference. If it is not equal to 1 then double-click the preference, enter 1 into edit box, click OK, re-start the browser, and check if the issue is resolved. Re: Firefox Is Running In MultiProcess Mode .. TestComplete May Work With Firefox Incorrectly...... Please try to change value of Firefox setting "security.sandbox.content.level" to 1, restart Firefox and try again. Re: Where do I find the 32 bit version of TestExecute? On 64-bit Windows the 64-bit version of TestExecute is running by default. Typically it is installed to the following folder: C:\Program Files (x86)\SmartBear\TestExecute 12\x64\Bin If you need to run 32-bit version of TestExecute then run it from the following folder: C:\Program Files (x86)\SmartBear\TestExecute 12\Bin Re: test complete getting hanged after message Preparing an object recognition hint. any solution Hi, Please try to switch to TestComplete 12.31 as it contains improvements in this area. Re: How can I just click a certain x y coordinate on a screen regardless of object? Please try the following: 1. Open NameMapping project node 2. Find and select object Sys.obunity.HwndSource_CanvasRibbonWindow7 3. Replace number in WndCaption property value to "*" (without quotes), so something like "Appeal ID: *" should be. It will mean that TestComplete should find any object which WndCaption starts with "Appeal ID: " and ends with any string. Re: HighChart Object Support Here is the link to the possible solutions: https://community.smartbear.com/t5/TestComplete-Functional-Web/Problem-to-validate-chart-on-website/m-p/131018 Re: How testcomplete handle jquery plugin notify.js You can just disable auto hide of notifications on the web page: $.notify.defaults( { autoHide: false, clickToHide: true } ) To do it using TestComplete call something like this: Sys.Browser().Page("*").contentDocument.Script.eval("$.notify.defaults( { autoHide: false, clickToHide: true } )") Re: Firefox 53 and Alert recognition (including WaitAlert) - default multi-process mode issue Hi Alex, I suppose you have Firefox multi-process mode enabled, which prevents some TestComplete features from working properly. Please take a look at this Help article: https://support.smartbear.com/testcomplete/docs/app-testing/web/general/preparing-browsers/firefox.html#Settings-disable-multiprocess-mode