如何自动化/脚本化注册等流程

发布于 2024-08-24 08:20:05 字数 278 浏览 4 评论 0原文

这是最好的工具 -

网站注册过程自动化,例如电子邮件注册

该工具应该能够从外部数据文件(例如 csv 文件的 Excel)中获取数据,

该数据文件将包含诸如名字、姓氏、用户名、密码等电子邮件注册期间所需的基本数据。我想象数据文件包含每个 单独列和每行中的字段包含不同注册/用户的数据。

在需要手动干预的地方,例如图像验证等,该工具应该能够暂停脚本,直到手动位完成,然后继续执行脚本。

执行此操作的最佳方法是什么 - 自动化工具,或任何脚本语言 - 请提出建议。

which is the best tool for this -

Automation of signup process to a website , e.g an email signup

The tool should be able to take data from an external data file like an excel of csv file

this data file would contain data such as first name , last name , username, password etc. basic data required during an email signup . I am imagining the data file to contain of each
field in a seperate column and each row to contain data for different registration / user.

At the places where manual intervention is required like image verification etc. the tool should be able to pause the script until manual bit is done then continue with the script.

What is the best way to do this - an automation tool , or any scripting language - please suggest .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

找个人就嫁了吧 2024-08-31 08:20:05

AutoIt v3 确实是为此而设计的。我曾经创建过一个应用程序来读取 Excel 文件,然后使用该数据填充我需要的其他内容。它具有完善的命令来自动化网络,包括控制网站的功能(特别是通过使用 _IE 功能)。他们还有很棒的论坛和帮助文件,可以帮助您及时启动并运行。您还可以将其编译为 .exe,这使得无需外部库即可轻松部署到多个用户。一切都可以嵌入。

AutoIt v3 is really made for this. I've once created an app to read excel file then use that data to populate other stuff I needed it to. It has well built commands to automate web including functions to control website (especially by using _IE functions). They also have great forum and Help File which should get you up and running in to time. Also you can compile it to .exe which makes it nice for easy deployment to multiple users with no need to have external libraries. Everything can come embedded.

谎言月老 2024-08-31 08:20:05

TestPlan 非常擅长网站自动化。输入数据的格式有很多种,这取决于具体需要什么格式以及您打算如何使用它。通常,编写快速 CSV 转换脚本比直接使用 CSV 更容易(尽管可以完成,并且也可以在 TestPlan 中编写转换)。

它有自己的脚本语言,通常足以满足所有用途。如果需要,也可以使用 Java 单元。

TestPlan is quite good at website automation. There are many formats for inputting data, it depends on exactly what format is needed and how you intend on using it. Usually writing a quick CSV conversion script is easier than using the CSV directly (though it can be done, and the conversion can be written in TestPlan as well).

It has its own scripting language which is usually sufficient for all uses. Java units are also available if need be.

森林散布 2024-08-31 08:20:05

您可以使用 selenium 来自动化注册过程。它可以具有与各种HTML元素交互的能力

You can very well go for selenium to automate the sign up process. It can have the ability to interact with all kinds of HTML elments

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文