如何安装 selenium 来测试 Windows 上的网站导航?

问题描述 投票:0回答:1

我想学习使用python使用selenium,我创建了一个托管在Xampp上的网站,但我想使用selenium测试导航,我不知道如何开始。我在 VSC 中创建了一个工作区,添加了带有网站的 Xampp 文件夹。我还下载了一个 chromedriver 并将其添加到系统变量的路径中。 但是当我尝试在 VSC 终端上使用 pip install selenium 时,这就是我得到的。

PS C:\Users\Joseph\Desktop\xampp> pip install selenium
Fatal error in launcher: Unable to create process using '"C:\Program Files\Python313\python.exe"  "C:\Program Files\Python313\Scripts\pip.exe" install selenium': The system cannot find the file specified.

PS C:\Users\Joseph\Desktop\xampp> 

我尝试在 VSC 终端上使用 pip install selenium 这就是我得到的。

PS C:\Users\Joseph\Desktop\xampp> pip install selenium
Fatal error in launcher: Unable to create process using '"C:\Program Files\Python313\python.exe"  "C:\Program Files\Python313\Scripts\pip.exe" install selenium': The system cannot find the file specified.

PS C:\Users\Joseph\Desktop\xampp> 
python testing selenium-chromedriver automated-tests
1个回答
0
投票

检查并解决问题的步骤:

  1. 使用“python --version”验证是否安装了 python。
  2. 使用“python -m pip --version”验证 pip 是否已安装。
  3. 检查 PATH 环境变量。右键单击“此电脑”或“我的电脑”并选择属性。点击“高级系统设置”,然后点击“环境变量”。
  4. 在“系统变量”下找到路径,然后单击编辑。
  5. 添加python和python\scripts的位置。 (见图1)。 图1
  6. 使用“pip install selenium”安装selenium。

如果再次出现错误,请尝试重新安装 python 和 pip。确保正确设置路径变量。要重新安装 python 和 pip,请阅读此 doc

© www.soinside.com 2019 - 2024. All rights reserved.