Sha256: fdce83e3d1554363bdbcd5e702115af7bb42a6b71254bb128d40a1199c14aa90
Contents?: true
Size: 1.06 KB
Versions: 2
Compression:
Stored size: 1.06 KB
Contents
When /^I retrieve the video element$/ do @element = @avpage.video_id_element end When /^I search for the video element by "([^\"]*)"$/ do |how| @element = @avpage.send "video_#{how}_element" end When /^I search for the video element by "([^\"]*)" and "([^\"]*)"$/ do |param1, param2| @element = @avpage.send "video_#{param1}_#{param2}_element" end Then /^I should know the video is not autoplay$/ do @element.should_not be_autoplay end Then /^I should know that the video is paused$/ do @element.should be_paused end Then /^I should know that its height is (\d+) pixels$/ do |height| @element.height.should == height.to_i end Then /^I should knot what its width is (\d+) pixels$/ do |width| @element.width.should == width.to_i end Then /^I should know that it has not ended$/ do @element.should_not be_ended end Then /^I should know that it is not seeking$/ do @element.should_not be_seeking end Then /^I should know that it is not in a loop$/ do @element.should_not be_loop end Then /^I should know that it is muted$/ do @element.should_not be_muted end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
page-object-1.2.0 | features/step_definitions/video_steps.rb |
page-object-1.1.1 | features/step_definitions/video_steps.rb |