Home > OS >  How do I input text automatically with python selenium?
How do I input text automatically with python selenium?

Time:06-16

I know these method element.send_keys('txt') and driver.execute_script("arguments[0].setAttribute('value', 'txt')", email).

I tried both of them.
But, I couldn't input the text. I think that following site controls input by javascript.
enter image description here

  • Related