I have an Excel spreadsheet that has numerical values that I am trying to type into the Bing search engine via Selenium Send Keys. Whenever I try to run the code it gives me an error
TypeError: object of type 'numpy.int64' has no len()
I am able to send alphanumeric strings and alphabetical strings but just not numerical values alone. How can I resolve this?
data = pd.read_excel(excel_file, sheet_name= "Sample")
value1 = data["Number"][1]
browser.get('https://www.bing.com')
browser.find_element_by_xpath('//*[@id="sb_form_q"]').send_keys(value1)