Exemple #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)
 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)
Exemple #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)
 def attach_file_upload(self, path):
     attach_file = TextField(self.driver, div_id="fileUpload")
     attach_file.input_text(path)
Exemple #5
0
 def input_quantity_textbox(self, quantity):
     input_quantity = TextField(self.driver, div_id="quantity_wanted")
     input_quantity.input_text(quantity)
Exemple #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)
 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)
Exemple #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)
Exemple #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)
Exemple #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)
Exemple #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)
 def input_password_textbox(self, password: str):
     input_password = TextField(self.driver, div_id="passwd")
     input_password.input_text(password)
 def input_email_address_textbox(self, email: str):
     input_email_address = TextField(self.driver, div_id="email")
     input_email_address.input_text(email)
 def input_create_account_email_address_textbox(self, email: str):
     input_email = TextField(self.driver, div_id="email_create")
     input_email.input_text(email)
Exemple #15
0
 def input_your_address_company_textbox(self, company):
     address_company = TextField(self.driver, div_id="company")
     address_company.input_text(company)
Exemple #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)
Exemple #17
0
 def input_your_address_address_textbox(self, address):
     address_address = TextField(self.driver, div_id="address1")
     address_address.input_text(address)
Exemple #18
0
 def input_your_address_alias_textbox(self, alias):
     address_alias = TextField(self.driver, div_id="alias")
     address_alias.input_text(alias)
Exemple #19
0
 def input_your_address_city_textbox(self, city):
     address_city = TextField(self.driver, div_id="city")
     address_city.input_text(city)
Exemple #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)
 def input_order_reference_textbox(self, order):
     order_reference = TextField(self.driver, div_id="id_order")
     order_reference.input_text(order)
Exemple #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)
 def input_contact_us_message_textbox(self, message):
     contact_us_message = TextField(self.driver, div_id="message")
     contact_us_message.input_text(message)
Exemple #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)
 def input_newsletter_email_textbox(self, email):
     newsletter_email = TextField(self.driver, div_id="newsletter-input")
     newsletter_email.input_text(email)
Exemple #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)
 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)
Exemple #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)
Exemple #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)
Exemple #30
0
 def input_search_textbox(self, search):
     search_name = TextField(self.driver, div_id="search_query_top")
     search_name.input_text(search)