from splinter import Browser
with Browser() as browser:
browser.visit('https://google.com/')
browser.visit('http://www.bing.com/')
browser.windows[0]
browser.windows[1]
How to open two tabs in python splinter and change tab?