def input_experience(self, experience):
     Service.send_input(self.driver, By.NAME, "cus.experience", experience)
 def input_last_tracking_remark(self, last_tracking_remark):
     Service.send_input(self.driver, By.NAME, "cus.last_tracking_remark",
                        last_tracking_remark)
 def input_age(self, age):
     Service.send_input(self.driver, By.NAME, "cus.age", age)
 def input_eduexp(self, eduexp):
     Service.send_input(self.driver, By.NAME, "cus.eduexp", eduexp)
 def input_salary(self, salary):
     Service.send_input(self.driver, By.NAME, "cus.salary", salary)
 def input_applposition(self, applposition):
     Service.send_input(self.driver, By.NAME, "cus.applposition",
                        applposition)
 def input_major(self, major):
     Service.send_input(self.driver, By.NAME, "cus.major", major)
 def input_intent(self, intent):
     Service.send_input(self.driver, By.NAME, "cus.intent", intent)
 def input_qq(self, qq):
     Service.send_input(self.driver, By.NAME, "cus.qq", qq)
 def input_school(self, school):
     Service.send_input(self.driver, By.NAME, "cus.school", school)
 def input_email(self, email):
     Service.send_input(self.driver, By.NAME, "cus.email", email)
 def input_name(self, name):
     Service.send_input(self.driver, By.NAME, "cus.name", name)
 def input_phone(self, tel):
     Service.send_input(self.driver, By.NAME, "cus.tel", tel)
Ejemplo n.º 14
0
 def input_query(self,content):
     Service.send_input(self.driver,By.CSS_SELECTOR,"div.col-lg-12:nth-child(4) > input:nth-child(3)",content)
Ejemplo n.º 15
0
 def input_time(self,start_date,end_date):
     driver = self.driver
     Service.remove_readonly(driver,"date1")
     Service.send_input(driver,By.ID,"date1",start_date)
     Service.remove_readonly(driver,"date2")
     Service.send_input(driver, By.ID, "date2", end_date)