I want help in a little thing, Look this:
I want to press the option
named Boleto Bancario, but look the html
Than how I will press the second option with selenium PYTHON
Please Check the snippet.
value
from selenium import webdriver
from selenium.webdriver.support.ui import Select
driver = webdriver.Chrome(r'chromedriver.exe')
driver.get('url')
sct = Select(driver.find_element_by_id('idFormaPagamento'))
sct.select_by_value('813640')
index
sct.select_by_index('1')