I'm working in sikuli-1.1.1,python. I need to automate a code to open a website. So, I have to open chrome and type the link in a tab with sikuli. As for now I'm using this code to open chrome,
app = App("C:\Program Files (x86)\Google\Chrome\Application\chrome.exe")
app.open()
but I don't want to open a new instance(window) every time.How to check whether the application is already running or not?.