在 link 上启动网页 url 点击 - Ruby 鞋子 3
Launch a web url on link click - Ruby Shoes 3
我将如何启动网络 url 例如https://google.com 在 Ruby 鞋子 3 上点击 link 之后?
我用下面的代码没有效果
flow do
###
para link("some text", click: proc {
visit "https://google.com"
})
###
end
和
flow do
###
para link "some text" do visit "https://google.com" end
###
end
有人可以告诉我怎么做吗?
试试这个
flow do
para(link("some text", :click => "https://google.com"))
end
使用此 question
中提供的方法修复了 link
flow do
proc = Proc.new {
system("cmd /c start https://google.com")
}
para link("some text", &proc)
end
欢迎在我关闭之前提出任何进一步的建议。
我将如何启动网络 url 例如https://google.com 在 Ruby 鞋子 3 上点击 link 之后?
我用下面的代码没有效果
flow do
###
para link("some text", click: proc {
visit "https://google.com"
})
###
end
和
flow do
###
para link "some text" do visit "https://google.com" end
###
end
有人可以告诉我怎么做吗?
试试这个
flow do
para(link("some text", :click => "https://google.com"))
end
使用此 question
中提供的方法修复了 linkflow do
proc = Proc.new {
system("cmd /c start https://google.com")
}
para link("some text", &proc)
end
欢迎在我关闭之前提出任何进一步的建议。