本文介绍了在 Windows XP 中将 Selenium Server Standalone 2 作为服务运行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在 Windows XP 中将 Selenium Server Standalone 2 作为 Windows 服务运行?

How can I run Selenium Server Standalone 2 as a windows service in Windows XP?

推荐答案

或者,如果您希望它在启动时启动,您可以这样做:

Or if you want it start at startup, you can do this:

  1. 创建文件 01_start_hub.bat,其中将包含以下命令:

  1. Create file 01_start_hub.bat which will contain this command:

java -jar selenium-server-standalone-2.20.0.jar -role hub

  • 创建文件 02_start_node.bat,其中将包含以下命令:

  • Create file 02_start_node.bat which will contain this command:

    java -jar selenium-server-standalone-2.20.0.jar -role node  -hub http://localhost:4444/grid/register
    

  • 将两个 bat 文件放入启动文件夹 C:\Documents and Settings\UserName\Start Menu\Programs\Startup

    是的,启动后你会有两个丑陋"的dos提示,但这是quickwin解决方案

    Yes you will have two "ugly" dos prompts after startup, but this is quickwin solutin

    这篇关于在 Windows XP 中将 Selenium Server Standalone 2 作为服务运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

  • 09-13 21:27