I need a script that reads the information from the active cell and searches on google. But I have no idea how to use selenium with python or something like that in libreoffice calc or Excel
Selenium allows me to do google searches, access websites, insert information in forms. So I need the script to read the active cell and do a google search. Something like:
import time
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
driver = webdriver.Chrome(executable_path=r"exec_path")
driver.get('https://www.google.com/')
driver.find_element_by_name("q").send_keys("active cell", Keys.RETURN)
time.sleep(15)
browser.quit()
But I want this code to interact with the active cell of excel or libreoffice calc and i don't know how.