Sha256: 573eebd9323ee9f96ec48987268d3f04788e8085c058c35717aeb5ff466d23f3
Contents?: true
Size: 801 Bytes
Versions: 2
Compression:
Stored size: 801 Bytes
Contents
When /^I search for the audio element by "([^\"]*)"$/ do |how| @element = @page.send "audio_#{how}_element" end When /^I search for the audio element by "([^"]*)" and "([^"]*)"$/ do |param1, param2| @element = @page.send "audio_#{param1}_#{param2}_element" end Then /^I should know the audio is not autoplay$/ do @element.should_not be_autoplay end Then /^I should know that the controls are displayed$/ do @element.should have_controls end Then /^I should know that the audio is paused$/ do @element.should be_paused end Then /^I should know that the duration is greater than (\d+) seconds$/ do |duration| @element.duration.should > duration.to_f end Then /^I should know that its volume is (\d+)$/ do |volume| @element.volume.should == volume.to_i end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
meeane-page-object-0.1.10 | features/step_definitions/audio_steps.rb |
meeane-page-object-0.1.8 | features/step_definitions/audio_steps.rb |