Forum Discussion
Hi,
Could you show a screenshot ?
I have some difficulties to understand your english.
On picture is mapping with object spy.... only panel after object spy mapping -> ultraExplorerBarEx.Click(59, 943);
I want mapping button on ultraExplorerBarEx panel too:
ultraExplorerBarEx.Button.Click(); - without x,y coordinates
- m_essaid10 years agoValued Contributor
When you use the object spy to map this object, which object is circled in red ? the button ? the whole button bar ?
In the second case, you may have a debug info problem.
Can't you use mouse coordinates, like you where doing at first ?
- David9110 years agoFrequent Contributor
Only button bar is red after object spy ... an this is my problem. I have map button, no button bar. I need click on button. After object spy mapping i have only button bar object (ultraExplorerBarEx.Click(59, 943);)
- m_essaid10 years agoValued Contributor
Well,
- you cannot ask your dev team to compile your application with debug info. Because you must test it in customer's version. And also because debug infos are confidential.
- so you have to do it "blindly". Consider the whole menu bar, and spy the coordinates of your button. Then call the menubar.click(x,y) method as you where doing.