Horje
python selenium firefox handle ssl bypass Code Example
python selenium firefox handle ssl bypass
 #NOT the correct way and it doesn't work EVERY time, but it works for me
from selenium import webdriver
driver = webdriver.Firefox()
site ='https://your-site.pt'
try:
    driver.get(site)
    time.sleep(4)
except:
    Button = driver.find_element_by_id("enableTls10Button") 
    Button.click()
   #NOT the correct way and it doesn't work EVERY time, but it works for me




Python

Related
python nearly equal Code Example python nearly equal Code Example
read .fasta python Code Example read .fasta python Code Example
python round and map function Code Example python round and map function Code Example
contar ocorrĂȘncias letra string python Code Example contar ocorrĂȘncias letra string python Code Example
kivy video recorder Code Example kivy video recorder Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7