Sha256: 6fa09eb9cfd421e38006cecd5637a53e238f816ebab098288e9f13905e3d5e44

Contents?: true

Size: 1.1 KB

Versions: 2

Compression:

Stored size: 1.1 KB

Contents

When /^I retrieve the video element$/ do
  @element = @page.video_id_element
end

When /^I search for the video element by "([^\"]*)"$/ do |how|
  @element = @page.send "video_#{how}_element"
end

When /^I search for the video element by "([^\"]*)" and "([^\"]*)"$/ do |param1, param2|
  @element = @page.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
meeane-page-object-0.1.10 features/step_definitions/video_steps.rb
meeane-page-object-0.1.8 features/step_definitions/video_steps.rb