This command entered in Python's interpreter opens a new FireFox window:
webdriver.Firefox(executable_path='C:\\...\\geckodriver.exe').get('https://doesnmatter/')
But then when I want to locate elements, but this open another Firefox window:
elements = driver.find_elements_by_xpath("//*doesnmatter")
How do I locate elements in the first Firefox window from Python console?