How to install and use Selenium in Linux

To install and use Selenium in a Linux system, you can follow these steps:

  1. To install Python: Selenium is typically used with Python, so first you need to install Python. You can use the following command to install Python:
sudo apt-get update
sudo apt-get install python3
  1. Install pip: pip is a package management tool for Python used to install Python modules. To install pip, you can use the following command:
sudo apt-get install python3-pip
  1. Install Selenium: To install the Selenium module using pip, you can use the following command:
sudo pip3 install selenium
  1. Installing Browser Driver: Selenium requires a browser driver to control the browser for automated actions. You can download the browser driver for Linux systems and add it to the system path.
  2. Write a Python script: Create a Python script to automate tasks using Selenium. Here is a simple sample code:
from selenium import webdriver

driver = webdriver.Chrome()  # 使用Chrome浏览器驱动
driver.get("https://www.baidu.com")
search_box = driver.find_element_by_name("wd")
search_box.send_keys("Selenium")
search_box.submit()

driver.quit()
  1. Run a Python script: By running the script written in Python, you can achieve Selenium automation operations.

By following the above steps, you will be able to install and use Selenium for automated testing or other web operations on a Linux system.

Leave a Reply 0

Your email address will not be published. Required fields are marked *