What is the fastest way to place a string into a text field using Python. Assuming the string can be parsed from an excel file
import webbrowser
url = 'http://google.com'
chrome_path = 'C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s'
webbrowser.get(chrome_path).open(url)
from pynput.keyboard import Key, Controller keyboard = Controller()
import xlrd
workbook = xlrd.open_workbook("Book1.xlsx") sheet =
workbook.sheet_by_index(0)
print (sheet.cell(0,0).value)