This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
driver = webdriver.Chrome() | |
url = 'https://web.archive.org/web/*/http://bankier.pl/' | |
driver.get(url) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CHOICES = [ | |
('AFGHANISTAN', 'AFGHANISTAN'), | |
('ALBANIA', 'ALBANIA'), | |
('ALGERIA', 'ALGERIA'), | |
('AMERICAN SAMOA', 'AMERICAN SAMOA'), | |
('ANDORRA', 'ANDORRA'), | |
('ANGOLA', 'ANGOLA'), | |
('ANGUILLA', 'ANGUILLA'), | |
('ANTARCTICA', 'ANTARCTICA'), | |
('ANTIGUA AND BARBUDA', 'ANTIGUA AND BARBUDA'), |