User Profile
User Widgets
Contributions
Re: Objects are Recorded for 1 Windows User but not the Other?
Hello Heidi, I am the case owner for Case 00202580, it looks like you entered the wrong email in the system. I have updated your contact information to reflect the email in your profile for the community and have resent my initial response.536Views0likes0CommentsRe: Regexp not found
Hello Vern, Is the height 23 or 24? a|b Matches either the a or b character or a group. For example, A|abc matches Abc and abc, but not A. The htm|(ml) pattern matches htm and html, but not htl or ml. [ ] Matches any single character specified in brackets. For instance, d[ab]e matches dae or dbe and does not match dwe or dxe. To include the ] character into the search, make it either first, or last character in the range or use \]. For example, []abc], [abc]] or [ab\]cd]. I believe your regex should be "regexp:2[34]" if that is the case https://support.smartbear.com/testcomplete/docs/reference/misc/regular-expressions.html1.4KViews0likes1CommentRe: License Manager for TestExecute?
I would highly recommend to turning on Host Affinity so that the VM hosting the licenses does not migrate hosts and cause any licensing errors. The license activated on a virtual computer will be bound to the virtual computer’s MAC address and to the host computer (the computer on which the virtual computer is currently running). If the virtual computer’s MAC address changes or you move the virtual computer to another host computer, your license will be blocked and you will not be able to use it. If your floating TE licenses are not already VM-Enabled then you will have to contact support to do so. https://support.smartbear.com/message/?prod=TestComplete2.6KViews4likes1CommentRe: msxml4.dll
Hello Herb, I took a look at the cases you have created with support, and some of them were "Auto-closed" due to no response. The last comments I see on the case are from the support team requesting for additional information, including the case regarding msxml4.dll. Is there a possibility that your email is filtering out the responses from the support team?2.1KViews0likes1CommentRe: IE 11 is not working with Testcomplete
When you run the RunIE() function, what errors do you receive? There should be no "Waiting for page('*') using that function as there is no call "page = Sys.Browser("*").Page("*");" Also, do you only have one instance of Internet Explorer running? Please check your Task Manager.6.7KViews1like1CommentRe: IE 11 is not working with Testcomplete
According to your screenshot, the page is not loaded yet (or not trying to load at all). The issue at hand seems to be the "Run" method, so let's try to resolve that issue. When you run this RunIE() function, you should see the "Navigating to ..." dialog from TestComplete. function RunIE() { Browsers.Item(btIExplorer).Run("http://smartbear.com/products"); }6.5KViews0likes3CommentsRe: IE 11 is not working with Testcomplete
Do you still experience this issue when using our JScript example? function evalXPath() { // Obtain the Page object var url = "http://samples.msdn.microsoft.com/workshop/samples/author/dhtml/refs/onclickEX1.htm"; Browsers.Item(btIExplorer).Run(url); var page = Sys.Browser("*").Page("*"); // Call the function var tmp = page.EvaluateXPath("//INPUT[contains(@onclick, 'CookieGroup')]"); // Check the result if (tmp != null) { // Convert the array to the JScript-compatible format var arr = tmp.toArray(); // and click the elements that were found var i; for (i =0; i<arr.length; i++) arr[i].Click(); // Note we refer to the array item } else { // If nothing was found, post a message to the log Log.Error("Nothing was found."); } } Example script from: https://support.smartbear.com/viewarticle/85288/#Example6.6KViews0likes5CommentsRe: backslash being removed
Hi Kevin, Please note that when scripting there are special characters that need to be 'escaped' when used in strings. Character sequence Description \\ Backslash \b Backspace \r Carriage return \" Double quote \f Form feed \n New line \' Single quote \t Tab1.1KViews3likes0Comments