79608056

Date: 2025-05-06 06:02:46
Score: 3.5
Natty:
Report link
class MyPage
  include PageObject

  def do_stuff_in_first_iframe
    in_iframe(css: 'div[name="first"] iframe') do |f|
      p span_element(frame: f).text
      p text_field_element(frame: f).value
    end
  end

  def do_stuff_in_second_iframe
    in_iframe(css: 'div[name="second"] iframe') do |f|
      p span_element(frame: f).text
      p text_field_element(frame: f).value
    end
  end
end

what is p stands for?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Starts with a question (0.5): what is
  • Low reputation (1):
Posted by: anonymous