Search found 5 matches

by pkaraya
Wed Sep 23, 2015 4:14 am
Forum: Automation API
Topic: C# code to Login
Replies: 1
Views: 3225

Re: C# code to Login

Hi, //Create a webdocument by domain WebDocument webDocument = "/dom[@domain=yourdomainname"]"; // Execute a javascript code string allcookies = webDocument.ExecuteScript("return document.cookie;"); string cookieName="thenameofthecookieyouaresearching"; string[] lines = Regex.Split(allcookies, ";");...
by pkaraya
Thu Nov 27, 2014 6:17 pm
Forum: General Questions
Topic: Ext-Js Grid issue
Replies: 5
Views: 1729

Re: Ext-Js Grid issue

Hi gwizard,
Can you please share your code on control wrapper for the Ext-Js Grid?
by pkaraya
Thu Nov 27, 2014 5:40 pm
Forum: General Questions
Topic: How to ensure each click take effect
Replies: 3
Views: 1581

Re: How to ensure each click take effect

Hi,
This is what has worked for me:
Validate.Exist(repoitem);;
repoitem.focus();
repoitem.MoveTo();
repo.item.Click();
by pkaraya
Tue Sep 09, 2014 9:15 pm
Forum: General Questions
Topic: Add test suite status information in the progress box
Replies: 3
Views: 1711

Re: Add test suite status information in the progress box

Hi swmatisa ,
Can you share a little bit more details on how you implemented the solution?

Thanks
Peter
by pkaraya
Thu Apr 03, 2014 6:36 pm
Forum: Object Identification and Technologies
Topic: Ranorex API
Replies: 1
Views: 1913

Ranorex API

Something I've been meaning to look for in the Ranorex API is a way to see if the whole page contains a string. This is commonly done in selenium with a call like:

AssertTrue (driver.getPageSource().contains("text_to_search"));

Do you know if there is anything similar in Ranorex?