When I use send_keys(string) to web browser, it just types directly following my non-US keyboard.
For example, there was a string like Smart Factory 보고서 and I wanted to send the string to the web using send_keys()
Example code is below,
string_value = "Smart Factory 보고서"
elem.send_keys(string_value)
The problem is that it returns Smart Factory qhrhtj because typing of 보고서 is same as typing of qhrhtj
My explanation is bad.. but it really makes me crazy. Does anyone know how to solve it?