Search found 5 matches

by ask007
Wed May 18, 2016 1:17 pm
Forum: How To …
Topic: How to avoid co-ordinate based events which get created by r
Replies: 3
Views: 2029

Re: How to avoid co-ordinate based events which get created by r

Hi, Thanks for reverting back. I'm having one doubt as- Cant we avoid coordinates or rectangle itself? ex: CompressedImage Client_Screenshot1 { get { return imagerepo.Photoshop2.ClientInfo.GetScreenshot1( new Rectangle(144, 81, 11, 15 )); } } How same rectangle coordinates works with diff type of sc...
by ask007
Mon May 09, 2016 9:41 am
Forum: How To …
Topic: Not able to track drop down with Adobe Photoshop CC 2015
Replies: 1
Views: 1976

Not able to track drop down with Adobe Photoshop CC 2015

Hi, I'm having requirement as follow 1. Open Adobe Photoshop CC 2015 2. Click on Start at the right top corner 3. Select Essentials from drop down I'm able to recognize elements upto step 2. However, for drop down to appear, need to click on start then select drop down values(two times click). Due t...
by ask007
Mon May 09, 2016 6:15 am
Forum: How To …
Topic: How to avoid co-ordinate based events which get created by r
Replies: 3
Views: 2029

How to avoid co-ordinate based events which get created by r

Hi, I'm having following doubts 1. How to automate image based test without using recording? Please provide example 2. Is it really necessary to create repo using recording every time? Is there any alternative available? 3. How to avoid co-ordinate based events which get created by recordings? ex: r...
by ask007
Mon May 09, 2016 6:06 am
Forum: How To …
Topic: How to validate water marked image
Replies: 2
Views: 1966

Re: How to validate water marked image

It explains what I wanted. So using Ranorex.Imaging.Compare() method, image can be compare pixel by pixel.
Thanks for reverting back :)
by ask007
Tue May 03, 2016 11:09 am
Forum: How To …
Topic: How to validate water marked image
Replies: 2
Views: 1966

How to validate water marked image

Hi, I have a requirement where I need to validate original image with water marked one. I tried loading image then converting it into Bitmap then compare. Bitmap expectedImageBmp = Ranorex.Imaging.Load(@"Water_Marked_Image_Path"); Bitmap actualImageBmp = Ranorex.Imaging.Load(@"Original_Image_Path");...