gpt4 book ai didi

Cucumber + Capybara 检查多次出现的文本

转载 作者:行者123 更新时间:2023-12-02 08:03:25 26 4
gpt4 key购买 nike

我想检查给定的字符串在某些情况下是否出现多次

我在其他地方找到了这个:

Then /^I should see "([^\"]*)" twice$/ do |text|
regexp = Regexp.new(text + "(.+)" + text)
response.body.should contain(regexp)
end

这是为 webrat 编写的。我尝试用 capybara 来表达:

Then /^I should see "([^"]*)" twice$/ do |text|
regexp = Regexp.new(text + "(.+)" + text)
if page.respond_to? :should
page.should have_xpath('//*', :text => regexp)
else
assert page.has_xpath?('//*', :text => regexp)
end
end

这让我期望 #has_xpath("//*") 返回 true,结果是 false

我还尝试了上述正则表达式的多行变体。

最佳答案

我在弄乱正则表达式后最终使用的解决方案。我认为“([^/])”会将某些内容作为正则表达式,而不是“([^”])”将某些内容作为纯文本:

Then /^I should see "([^\/]*)" "(.+)" times$/ do |regexp, times|
str = regexp
for i in times
str = str + "(.+)" + regexp
end
regexp = Regexp.new(str)
if page.respond_to? :should
page.should have_xpath('//*', :text => regexp)
else
assert page.has_xpath?('//*', :text => regexp)
end
end

关于Cucumber + Capybara 检查多次出现的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6599221/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com