コード例 #1
0
 def input_order_history_order_reference_product_message_textbox(
         self, textbox):
     order_history_order_reference_product_message = \
         TextField(self.driver, div_name="msgText")
     order_history_order_reference_product_message.input_text(textbox)
コード例 #2
0
 def input_write_a_review_title_textbox(self, review):
     write_a_review_title = TextField(self.driver, div_id="comment_title")
     write_a_review_title.input_text(review)
コード例 #3
0
 def input_name_of_your_friend_textbox(self, friend):
     name_of_your_friend = TextField(self.driver, div_id="friend_name")
     name_of_your_friend.input_text(friend)
コード例 #4
0
 def attach_file_upload(self, path):
     attach_file = TextField(self.driver, div_id="fileUpload")
     attach_file.input_text(path)
コード例 #5
0
 def input_quantity_textbox(self, quantity):
     input_quantity = TextField(self.driver, div_id="quantity_wanted")
     input_quantity.input_text(quantity)
コード例 #6
0
 def input_your_address_line_two_textbox(self, address_two):
     address_line_two = TextField(self.driver, div_id="address2")
     address_line_two.input_text(address_two)
コード例 #7
0
 def input_contact_us_email_address_textbox(self, email):
     contact_us_email_address = TextField(self.driver, div_id="email")
     contact_us_email_address.input_text(email)
コード例 #8
0
 def input_your_address_additional_information_textbox(self, additional_info):
     address_additional_information = TextField(self.driver, div_id="other")
     address_additional_information.input_text(additional_info)
コード例 #9
0
 def input_your_address_home_phone_textbox(self, home_phone):
     address_home_phone = TextField(self.driver, div_id="phone")
     address_home_phone.input_text(home_phone)
コード例 #10
0
 def input_comment_on_your_order_textbox(self, text: str):
     comment_on_your_order = TextField(self.driver, div_name="message")
     comment_on_your_order.input_text(text)
コード例 #11
0
 def input_your_address_zip_postal_code_textbox(self, zip_code):
     address_zip_postal_code = TextField(self.driver, div_id="postcode")
     address_zip_postal_code.input_text(zip_code)
コード例 #12
0
 def input_password_textbox(self, password: str):
     input_password = TextField(self.driver, div_id="passwd")
     input_password.input_text(password)
コード例 #13
0
 def input_email_address_textbox(self, email: str):
     input_email_address = TextField(self.driver, div_id="email")
     input_email_address.input_text(email)
コード例 #14
0
 def input_create_account_email_address_textbox(self, email: str):
     input_email = TextField(self.driver, div_id="email_create")
     input_email.input_text(email)
コード例 #15
0
 def input_your_address_company_textbox(self, company):
     address_company = TextField(self.driver, div_id="company")
     address_company.input_text(company)
コード例 #16
0
 def input_your_address_mobile_phone_textbox(self, mobile_phone):
     address_mobile_phone = TextField(self.driver, div_id="phone_mobile")
     address_mobile_phone.input_text(mobile_phone)
コード例 #17
0
 def input_your_address_address_textbox(self, address):
     address_address = TextField(self.driver, div_id="address1")
     address_address.input_text(address)
コード例 #18
0
 def input_your_address_alias_textbox(self, alias):
     address_alias = TextField(self.driver, div_id="alias")
     address_alias.input_text(alias)
コード例 #19
0
 def input_your_address_city_textbox(self, city):
     address_city = TextField(self.driver, div_id="city")
     address_city.input_text(city)
コード例 #20
0
 def input_your_personal_information_last_name_textbox(self, last_name):
     personal_information_last_name = \
         TextField(self.driver, div_id="customer_lastname")
     personal_information_last_name.input_text(last_name)
コード例 #21
0
 def input_order_reference_textbox(self, order):
     order_reference = TextField(self.driver, div_id="id_order")
     order_reference.input_text(order)
コード例 #22
0
 def input_your_personal_information_email_textbox(self, email):
     personal_information_email = TextField(self.driver, div_id="email")
     personal_information_email.input_text(email)
コード例 #23
0
 def input_contact_us_message_textbox(self, message):
     contact_us_message = TextField(self.driver, div_id="message")
     contact_us_message.input_text(message)
コード例 #24
0
 def input_your_personal_information_password_textbox(self, password):
     personal_information_password = TextField(self.driver, div_id="passwd")
     personal_information_password.input_text(password)
コード例 #25
0
 def input_newsletter_email_textbox(self, email):
     newsletter_email = TextField(self.driver, div_id="newsletter-input")
     newsletter_email.input_text(email)
コード例 #26
0
 def input_your_address_first_name_textbox(self, first_name):
     address_first_name = TextField(self.driver, div_id="firstname")
     address_first_name.input_text(first_name)
コード例 #27
0
 def input_write_a_review_comment_textbox(self, comment):
     write_a_review_comment = TextField(self.driver, div_id="content")
     write_a_review_comment.input_text(comment)
コード例 #28
0
 def input_your_address_last_name_textbox(self, last_name):
     address_last_name = TextField(self.driver, div_id="lastname")
     address_last_name.input_text(last_name)
コード例 #29
0
 def input_email_address_of_your_friend_textbox(self, email):
     email_address_of_your_friend = TextField(self.driver,
                                              div_id="friend_email")
     email_address_of_your_friend.input_text(email)
コード例 #30
0
 def input_search_textbox(self, search):
     search_name = TextField(self.driver, div_id="search_query_top")
     search_name.input_text(search)