执行ruby脚本报错TimeoutError,请大家帮吗看下吧

Python013

执行ruby脚本报错TimeoutError,请大家帮吗看下吧,第1张

因为这个元素在60秒内一直没有展现出来吧,所以报了超时,贴下这个方法的源码:

#

# Waits until the element is present.

#

# @example

# browser.button(:id =>'foo').wait_until_present

#

# @param [Fixnum] timeout seconds to wait before timing out

#

# @see Watir::Wait

# @see Watir::Element#present?

#

def wait_until_present(timeout = 30)

message = "waiting for #{selector_string} to become present"

Watir::Wait.until(timeout, message) { present? }

end

def until(timeout = 30, message = nil, &block)

end_time = ::Time.now + timeout

until ::Time.now >end_time

result = yield(self)

return result if result

sleep INTERVAL

end

raise TimeoutError, message_for(timeout, message)

end

希望对你有帮助

说是使用pdfkit,其实做工作的还是wkhtmltopdf。

一、新建项目

rails new mypdf --skip-bundle

进入项目:cd mypdf,打开Gemfile:vim Gemfile

修改source为https://ruby.taobao.com

添加:gem 'pdfkit'

运行bundle install

二、配置

在项目目录下的config/initializers里加上pdfkit.rb文件,修改内容为:

PDFKit.configure do |config|

config.wkhtmltopdf = '/path/wkhtmltopdf'

end

config.wkhtmltopdf配置的是wkhtmltopdf的路径,要确保pdfkit能找到它。

它的配置请参考:http://wkhtmltopdf.org/usage/wkhtmltopdf.txt,里面的横杠用下划线代替。

三、使用

在controller里的相应位置加入:

用渲染的模版内容生pdf:

html = render_to_string(:template =>"pdf_template.erb",:layout =>false)

kit = PDFKit.new(html)

kit.stylesheets <<"#{Rails.root}/app/assets/assets/stylesheets/pdf.css"

#kit.to_pdf # inline PDF

#kit.to_file('/path/pdf.pdf')

send_data(kit.to_pdf, :filename =>"mypdf.pdf", :type =>"application/pdf")

#render :text =>kit.to_pdf

用url的内容生成pdf:

url = "http://www.baidu.com"

kit = PDFKit.new(url)

# kit.stylesheets <<"#{Rails.root}/app/assets/assets/stylesheets/pdf.css" # 用url时就不可以用css样式了。

#kit.to_pdf # inline PDF

#kit.to_file('/path/pdf.pdf')

send_data(kit.to_pdf, :filename =>"mypdf.pdf", :type =>"application/pdf")

注: kit = PDFKit.new(url, cookie: {"cookie_name"=>"cookie_content"}),如果需要登录的话,可以用cookie。cookie可以自己获取。

另外,如果你的页面里有js需要运行,最好在设置文件里设置如下:

javascript_delay: 1000

它的默认值是200毫秒。把加大一些,以便让js运行完成。

这样就可以用了。

require 'net/http'

url = URI.parse('你要提交的地址')

Net::HTTP.start(url.host, url.port) do |http|

req = Net::HTTP::Post.new(url.path)

req.set_form_data({ '参数1' =>'值1', '参数2' =>'值2' })

http.request(req).body