User Profile
User Widgets
Contributions
Re: 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.3.6KViews1like2CommentsRe: 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)1.9KViews0likes1CommentRe: 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.2.5KViews2likes1CommentRe: 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\Bin3.8KViews2likes5CommentsRe: 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.6.3KViews3likes2CommentsRe: 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 } )")1.6KViews1like0CommentsRe: 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-mode1.4KViews3likes1Comment