PHANTOMJS measures to be marked as obsolete in the selenium

Source: Internet
Author: User
Tags deprecated

Today when using PHANTOMJS, selenium hint Phantomjs was marked disapproval, I was blindfolded. PHANTOMJS is a well-known version of the Headless browser, marked as outdated, which means that this support will be discarded in future releases. So it's better to discard the PHANTOMJS and switch to the recommended headless Chrome first.

Python 3.6.4 (Default, Jan 5 2018, 02:35:40) [GCC7.2.1 20171224] on Linuxtype" Help","Copyright","credits" or "License"  forMore information.>>> fromSeleniumImportWebdriver>>> driver=Webdriver. PHANTOMJS ()/usr/lib/python3.6/site-packages/selenium/webdriver/phantomjs/webdriver.py:49:userwarning:selenium Support forPHANTOMJS have been deprecated, please use headless versions of ChromeorFirefox instead Warnings.warn ('Selenium support for PHANTOMJS have been deprecated, please use headless'

How to use Headless Chrome

Headless mode is a new feature in Chrome 59.
To use chrome, you need to install Chromedriver.

1  fromSeleniumImportWebdriver2  fromSelenium.webdriver.chrome.optionsImportOptions3 4Chrome_options =Options ()5Chrome_options.add_argument ('--headless')6Chrome_options.add_argument ('--disable-gpu')7Driver = Webdriver. Chrome (chrome_options=chrome_options)8Driver.get ("https://cnblogs.com/")

Other uses are basically the same as PHANTOMJS.
For more information, please see the official documentation.

PHANTOMJS measures to be marked as obsolete in the selenium

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.