Failing to open HTTPS pages in PhantomJS using Splinter
问题 I'm trying to use PhantomJS to write a scraper but even the example in the documentation of morph.io is not working. I guess the problem is "https", I tested it with http and it is working. Can you please give me a solution? I tested it using firefox and it works. from splinter import Browser with Browser("phantomjs") as browser: # Optional, but make sure large enough that responsive pages don't # hide elements on you... browser.driver.set_window_size(1280, 1024) # Open the page you want...