Sha256: 8b401752ccad1d60159088b11726651003dccebb110a094cd6d0967b0d127b28

Contents?: true

Size: 522 Bytes

Versions: 1

Compression:

Stored size: 522 Bytes

Contents

When(/^I retrieve the data from the table cell$/) do
  @cell_text = @page.cell_id
end

Then(/^the cell data should be '(.*?)'$/) do |expected_text|
  expect(@cell_text).to eql expected_text
end

When(/^I locate the table cell by "(.*?)"$/) do |how|
  @cell_text = @page.send "cell_#{how}".to_sym
end

When(/^I retrieve table cell$/) do
  @element = @page.cell_id_cell
end

When(/^I retrieve a table cell element by "(.*?)" and "(.*?)"$/) do |param1, param2|
  @cell_text = @page.send "cell_#{param1}_#{param2}".to_sym
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
druid-ts-0.0.1 features/step_definations/table_cell_steps.rb