Search found 11 matches

by pmaladi
Tue Jan 26, 2021 10:30 am
Forum: General Questions
Topic: Incognito mode
Replies: 3
Views: 1932

Re: Incognito mode

Any idea how to open browser with with Ranorex addon enabled (Allow in Incognito) Mode. Use Case: Elements are not identified and its unable to identify the element when i open the application in incognito mode and to identify the elements, i need to enable to "Allow in Incognito" in extensions. but...
by pmaladi
Mon Oct 22, 2018 9:09 pm
Forum: Automation API
Topic: API Calls
Replies: 2
Views: 5335

API Calls

this are code examples which we use.. might not be helpful .. i just kept here for my reference. public void editXML() { XmlDocument doc = new XmlDocument(); OCoELibrary OL=new OCoELibrary(); WinSCPLib wnScp=new WinSCPLib(); string path = OCoEValues.RequestXML; doc.Load(OCoEValues.RequestXML); //Rep...
by pmaladi
Mon May 21, 2018 9:53 pm
Forum: General Questions
Topic: how to suppress code warnings ?
Replies: 1
Views: 1333

how to suppress code warnings ?

i am getting the below warning when I upgraded my version from 7 to 8.0.0. but this is executing perfectly fine for now, not sure why its showing when i upgraded and how to resolve this ? 'Adapter.FindDescendant<T>(string)' is obsolete: 'This method will be removed because its usage is misleading wh...
by pmaladi
Tue Jan 09, 2018 8:31 pm
Forum: General Questions
Topic: Can i automate windows application on Remote desktop
Replies: 6
Views: 6056

Re: Can i automate windows application on Remote desktop

hello all , i am launching some applications via citrix, after launching it looks like a windows tool that installed in windows, but if we try to spy that window, not able to locate any element in it. please let me know if we have plug-ins that supports this type of tools or any other way to do it ?
by pmaladi
Fri Dec 01, 2017 8:21 pm
Forum: General Questions
Topic: Code examples for day to day use.
Replies: 2
Views: 2090

Re: Code examples for day to day use.

How to read xml file using ranorex public void validateReceipientList(string inputXmlPath) { XmlDocument document = new XmlDocument(); document.Load(inputXmlPath); XmlNodeList recipientItem = document.GetElementsByTagName("Header_AttributeName"); foreach (XmlNode childList in recipientItem) { string...
by pmaladi
Fri Dec 01, 2017 8:13 pm
Forum: General Questions
Topic: Code examples for day to day use.
Replies: 2
Views: 2090

Code examples for day to day use.

Reading attribute value: string imgText = urgencyIndicator.GetAttributeValue<string>("Src"); -> to get value using attribute value Identifying the elements: InputTag input = tableSearchCriteria_OCoEFileNet.FindSingle("//td[@innertext='"+fieldName+"']/parent::tr/td[5]/input"); -> from parent to child...
by pmaladi
Mon Nov 27, 2017 5:14 pm
Forum: General Questions
Topic: Facing issue in IE launch intermittently in cloud machines
Replies: 2
Views: 1464

Facing issue in IE launch intermittently in cloud machines

Hello, we are using cloud machines to run our scripts, intermittently scripts are failing due to access denied, but the same scripts are running good if we are running it again in the same machines. code used: Host.Local.OpenBrowser(RequestedURL,"IE",true,true); displayed with below message: Failed ...
by pmaladi
Wed Sep 27, 2017 10:22 pm
Forum: Automation API
Topic: Validation continue on fail
Replies: 3
Views: 3790

Re: Validation continue on fail

with the help of above post, i am able to proceed little bit.. thank you.. :D
by pmaladi
Thu Aug 17, 2017 9:52 pm
Forum: General Questions
Topic: How to bold specific content in ranorex.info or screenshot
Replies: 2
Views: 1438

How to bold specific content in ranorex.info or screenshot

Hi Team,

i am in need to highlight(bold) some content in reporting, can someone please suggest me how to do that ?