我正在尝试在C#中创建一个自动点击程序,以便更快地完成一些管理任务。简而言之,我将使用一个程序(Firefox),并且需要一个程序来自动移动鼠标并单击我告诉它的任何位置。
目前我有这个代码,虽然我认为我离实际的解决方案还很远。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Drawing;
namespace Clicker
{
public partial class Form1 : Form
{
[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
public static extern void mouse_event(long dwFlags, long dx, long dy, long cButtons, long dwExtraInfo);
private const int MOUSEEVENTF_LEFTDOWN = 0x02;
private const int MOUSEEVENTF_LEFTUP = 0x04;
private const int MOUSEEVENTF_RIGHTDOWN = 0x08;
private const int MOUSEEVENTF_RIGHTUP = 0x10;
public void DoMouseClick()
{
//Call the imported function with the cursor's current position
Cursor.Position = new Point((int)10, (int)10);
mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, Cursor.Position.X, Cursor.Position.Y, 0, 0);
}
public Form1()
{
//InitializeComponent();
}
}
}
我希望我的程序在Firefox上运行,一旦加载后立即开始点击我告诉它的位置。它需要点击十三个30x30像素的按钮然后停止,让我完成任务。
我将如何完成这项任务?
编辑:我忘了提到前端是在Flash中。很奇怪,我知道。无论哪种方式,这意味着像Selenium这样的程序将无法用作其曲目页面移动和点击链接。答案 0 :(得分:3)
虽然这不能用C#代码回答你的问题,但我真的不得不建议你看一下AutoIt。它是一种非常简单的脚本语言,用于创建要重复的已定义任务。我已经成功地将它用于各种各样的任务,从反复输入用于测试Web应用程序的表单数据到在MMO游戏中对抗怪物。
答案 1 :(得分:3)
是否需要实际自动化鼠标,或者只需按下按钮?您可以使用Selenium轻松完成此操作,包括使用IDE(FireFox插件)记录您的操作,为您生成C#代码。
答案 2 :(得分:3)
要扩展@Chris Marisic的答案,您实际上可以使用AutoItX从C#(或其他语言)中使用AutoIt。我没试过这个,但显然你可以把它编译成DLL并从你的代码中调用它,参见http://www.autoitscript.com/forum/index.php?showtopic=39262
答案 3 :(得分:1)