2018-04-04 10:18:51 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2014-05-14 13:18:19 +02:00
|
|
|
module Flash
|
|
|
|
|
def flash
|
|
|
|
|
results = all(:css, 'div#flash p')
|
2018-04-04 10:18:51 -07:00
|
|
|
return 'none' if results.empty?
|
2014-05-14 13:18:19 +02:00
|
|
|
if results.count > 1
|
2018-04-04 10:18:51 -07:00
|
|
|
texts = results.map(&:text)
|
|
|
|
|
raise "One flash expected, but we had #{texts.inspect}"
|
2014-05-14 13:18:19 +02:00
|
|
|
end
|
|
|
|
|
results.first.text
|
|
|
|
|
end
|
|
|
|
|
end
|