I'm trying to write a name (string with spaces) into an input field, but it seems to ignore the space between the first and last name, which is quite important in this instance. Have anybody else experienced similar problems?
My code:
#write given message to element specified by name
def write_to_input(self,name,message):
inputEl = self.driver.find_element_by_name(name)
inputEl.send_keys(message)
#writing name
self.write_to_input("name","John Doe")self.write_to_input("name","John Doe")--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to selenium-user...@googlegroups.com.
To post to this group, send email to seleniu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/selenium-users/2fb30ae0-477b-4787-b2c2-b49ebda6db28%40googlegroups.com.