mherrmann/helium

Is it possible to use Helium with Safari

Opened this issue · 1 comments

brr53 commented

Hello, I'd like to use Helium with Safari although I see it is not supported via the docs.

I know the question is old... But something like this should work:

from selenium import webdriver
from helium import *

# Open your favourite browser using Selenium
driver = webdriver.Safari()
driver.get('YOUR_URL')

# Pass the Selenium driver into Helium
set_driver(driver)  

# Now use Helium as usual
click('Login')
write('my@email.com', into='E-mail')
#...