from splinter.browser import Browser with Browser() as b: for url,name in web: b.visit(url) b.fill('Password','password') button=b.find_by_id('loginBtn') button.click() t=b.find_by_id('FreeSpaceId') print name,t.text tab=b.find_by_id('login-table') t…