0

我正在尝试运行一个包含不同命令的脚本,这些命令是:

1) 系统“bundle exec rails s -e test -d”

2) 系统“bundle exec selenium-rc”

3) 系统“bundle exec rspec test/selenium/*_sel.rb”

现在当第 1 行执行服务器运行并且控制台的控制权被转移回来。但是在执行第 2 行之后,硒服务器运行,但控制台的控制权没有被转回,因为没有执行第 3 行。

所以我的问题是我们如何同时运行所有三个命令。

4

1 回答 1

0

我通过一些研究而不是第 2 行找到了解决方案,现在我正在使用以下代码运行 selenium 服务器

require 'selenium/rake/tasks'
JAR_FILE_PATTERN = "vendor/selenium-remote-control/selenium-server-*.jar"    
@port = 4444      
@jar_file = "YOUR_PROJECT_PATH/vendor/selenium-server-standalone-2.28.0.jar"   
@background = true   
@timeout_in_seconds = 3 * 60   
@wait_until_up_and_running = true  
@additional_args = []  
@additional_args << "-singleWindow"   

raise "Could not find jar file '#{@jar_file}'. Expected it under     #{JAR_FILE_PATTERN}"      unless @jar_file && File.exists?(@jar_file)    
remote_control = Selenium::RemoteControl::RemoteControl.new("0.0.0.0", @port, :timeout => @timeout_in_seconds)   
remote_control.jar_file = @jar_file    
remote_control.additional_args = @additional_args   
remote_control.log_to = @log_to   
remote_control.start :background => true       
if @background && @wait_until_up_and_running       
  TCPSocket.wait_for_service :host => @host, :port => @port     
end      

3) # 现在第 3 行来到这里

4) remote_control.stop #这条线停在那里 server

于 2013-02-19T07:09:20.800 回答