Tkinter And Selenium How To Send Text To Driver.get?
on to send the text from entry driver.get ? what I'm doing wrong ? def onclick(): txt = Entry(root) txt.place(x=200, y=70) texto = txt.get() driver.get(texto)
Solution 1:
You need to wait until the user has a chance to type into the entry widget. As written, you are calling txt.get()
about a millisecond after creating the widget.
Typically you should call the get
method in response to an event such as clicking a button or pressing the return key, or something like that.
Post a Comment for "Tkinter And Selenium How To Send Text To Driver.get?"