1.

What Is Approach To Perform Mouse Click Operation?

Answer»

using Click() method we can perform click operation on any CONTROL in Coded UI.

Total there are 10 Click() overload METHODS mentioned below:

  • Mouse.Click();
  • Mouse.Click(ModifierKeys modifierKeys);
  • Mouse.Click(MouseButtons BUTTON);
  • Mouse.Click(POINT screenCoordinate);
  • Mouse.Click(UITestControl control);
  • Mouse.Click(UITestControl control, ModifierKeys modifierKeys);
  • Mouse.Click(UITestControl control, MouseButtons button);
  • Mouse.Click(UITestControl control, Point relativeCoordinate);
  • Mouse.Click(MouseButtons button, ModifierKeys modifierKeys, Point screenCoordinate);
  • Mouse.Click(UITestControl control, MouseButtons button, ModifierKeys modifierKeys, Point relativeCoordinate);

using Click() method we can perform click operation on any control in Coded UI.

Total there are 10 Click() overload methods mentioned below:



Discussion

No Comment Found