Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to install selenium and iceweasel for raspberry pie

2025-01-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article will explain in detail how to install selenium and iceweasel for raspberry pie. The editor thinks it is very practical, so I share it with you as a reference. I hope you can get something after reading this article.

Before installation

You have to apt-get update first.

Sudo apt-get update installs iceweasel (firefox) sudo apt-get install iceweasel

Check the version of iceweasel and make sure it is 52

Iceweasel-version

Mine is 52.7.3.

Download driver geckodriver

For 52.7.3 iceweasel, jianghu legend needs to match the 0.15.0 version of geckodriver: download address

Here we should pay attention to selecting the compiled version of arm

After downloading it, extract it to get the geckodriver file, and set the permission of this file to 777.

Sudo chmod-R 777 geckodriver

Move the geckodeiver file to the environment variable / usr/local/bin directory

Install selenium

The version of Selenium must be above 3.3.00. Let's use 3.3 to prevent any moths.

Sudo pip install selenium==3.3 prepare the code

Now that the installation is complete, let's prepare the code for the python test:

From selenium import webdriverbrowser = webdriver.FireFox () browser.get ('http://www.baidu.com')browser.get('http://www.qq.com')

The function is to visit Baidu first, and then visit qq's website. After the python is running, the firefox can be opened smoothly, and the process is completed, indicating that the environment is installed successfully.

This is the end of the article on "how to install selenium and iceweasel for raspberry pie". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report