来自命令行的 Selenium 2 Web 驱动程序

发布于 2024-11-30 11:21:22 字数 106 浏览 1 评论 0原文

我以前已经这样做过,但似乎脑子冻结了,谷歌没有帮助

我在 Java 中使用 Eclipse 提供 selenium 2 Web 驱动程序,我只想从命令行运行一个脚本(类,java)。

I have done this before but seem to be having a brain freeze and google is not helping

I have selenium 2 web driver in Java with eclipse and I simply want to run a script (class, java) from the command line.

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

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

发布评论

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

评论(1

翻身的咸鱼 2024-12-07 11:21:22

设置类路径,编译代码,然后运行代码。沿着这条线,

set classpath=c:\path\to\my\project\bin\.;c:\path\where\all\required\jars\*;
javac mywebdriver.java
java  mywebdriver

我建议你看看 Ant 来构建你的代码而不是上面的东西。

Set the classpath, compile the code and then run the code. Something along the lines,

set classpath=c:\path\to\my\project\bin\.;c:\path\where\all\required\jars\*;
javac mywebdriver.java
java  mywebdriver

I would suggest you to look at Ant for building your code than something like above..

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