如何在Cucumber的自定义路径中使用正则表达式

时间:2012-09-12 01:04:05

标签: regex mapping cucumber

我在paths.rb中有一条路径:

when /the page for CA/
   '/CA-area-code'

但是,我想对路径的一部分进行正则表达式,以便它从特征步骤中的正则表达式中提取值。像这样:

when /the Phone SEO page for (.*)/
   '/#{foo}-area-code'

1 个答案:

答案 0 :(得分:0)

when /the Phone SEO page for (.*)/
   '/#{$1}-area-code'

应该这样做。