Search found 8 matches

by thirukumar
Wed Sep 21, 2016 6:24 am
Forum: General Questions
Topic: Is it possible to identify the color of text?
Replies: 9
Views: 3382

Re: Is it possible to identify the color of text?

Hi odklizec, I went through the link "can-access-getstyle-from-ranorex-spy-but-not-studio-t4872.html#p20593". But here they used method called GetStyle(). Another thing they used is by using attribute value Color. 1) After Spying the Cell from the table - I don't have getstyle() method. 2) When you ...
by thirukumar
Mon Sep 19, 2016 10:45 am
Forum: General Questions
Topic: Is it possible to identify the color of text?
Replies: 9
Views: 3382

Re: Is it possible to identify the color of text?

Hi odklizec,

I have gone through those 3 links. But I didn't find any answer for finding color of text.

If possible help me out with any workaround solution?

Thanks.
by thirukumar
Mon Sep 19, 2016 7:35 am
Forum: General Questions
Topic: Is it possible to identify the color of text?
Replies: 9
Views: 3382

Re: Is it possible to identify the color of text?

Hi odklizec, My Application is Java Based Window application. I took small part of table. This is my Screen shot for your reference: Table.jpg Note: In this table there is a row with text red in color. By using Spy, here is the snapshot for your reference: Snapshot of Cell from a Table.7z Snapshot o...
by thirukumar
Wed Jul 06, 2016 12:59 pm
Forum: How To …
Topic: How to get Date from Date Time
Replies: 3
Views: 4054

Re: How to get Date from Date Time

Hi odklizec,

Thank You it worked. But Can you tell me the reason why we need to use "%d" instead if "d"?


Thanks,
Thirukumar.
by thirukumar
Wed Jul 06, 2016 12:54 pm
Forum: General Questions
Topic: Is it possible to identify the color of text?
Replies: 9
Views: 3382

Is it possible to identify the color of text?

Hi,

1. By Using Ranorex, Is it possible to identify the color of Text?
2. Is it possible to identify the background color of the Cell from Table?



Thanks,
Thirukumar.
by thirukumar
Wed Jul 06, 2016 12:38 pm
Forum: General Questions
Topic: Regular Expression
Replies: 2
Views: 1190

Re: Regular Expression

Thank You Odklizec. It worked with your idea.


Thanks.
by thirukumar
Wed Jul 06, 2016 12:35 pm
Forum: How To …
Topic: How to get Date from Date Time
Replies: 3
Views: 4054

How to get Date from Date Time

Hi, In my code i am using the following line of code Today date: 06-07-2016 string timestamp = System.DateTime.Today.ToString("d"); (or) string timestamp = System.DateTime.Now.ToString("d"); for above both code i am getting output as "06-07-2016" instead of output as "6". d - day "6" dd - day "06" d...
by thirukumar
Tue Jun 07, 2016 10:49 am
Forum: General Questions
Topic: Regular Expression
Replies: 2
Views: 1190

Regular Expression

/form[@title='Equipment Operators'] /form[@title~'^Shift\ Change\ -\ Cat\ MineSt'] My answer for above by using regular expression 1) /form[@title~'*.*'] 2) /form[@title~(=|~)'*.*'] 3) /form[@title~(=|~)'*.*'] 4) /form[@title*] 5) /form[@title*.*] All failed. Any Suggestion on this how to use regula...