search for a data in my browser via script

Meeran Rizvi hmmeeranrizvi18 at gmail.com
Mon Feb 6 09:43:06 EST 2017


Hello guys,
Here i am writing a script which will open my chrome browser and opens the URL www.google.com.
But how to search for a data via script.
for example i need to search for 'Rose' in google.com via script.
how to do that?

<python>
import webbrowser
url="www.google.com"
chrome_path = 'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe %s'
webbrowser.get(chrome_path)
webbrowser.open(url)
</python>



More information about the Python-list mailing list