Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to get current google tab in python

from pywinauto import Application # import pywinauto
app = Application(backend='uia')
app.connect(title_re=".*Chrome.*")
element_name="Address and search bar"
dlg = app.top_window()

url = dlg.child_window(title=element_name, control_type="Edit").get_value() # get url from database
print(url)# print url
# -/-/-/-/-/-/-*** HAPPY CODING ***-/-/-/-/-/-/-/-
 
PREVIOUS NEXT
Tagged: #current #google #tab #python
ADD COMMENT
Topic
Name
6+9 =