我刚刚使用
为Selenium
安装了Python
(对我来说是新的)
sudo -H pip install selenium
并在以下命令
from selenium.webdriver import Firefox
我得到了
没有名为webdriver的模块
有什么想法吗?
答案 0 :(得分:1)
很可能你的Python文件叫做
selenium.py
Python解释器首先尝试从您所在的目录导入文件,因此解决方案是重命名已执行的文件,问题就会消失。
答案 1 :(得分:0)
检查系统环境变量中是否添加了站点包链接;
C:\ Python27 \ LIB \站点包;
在Windows启动时,键入环境变量。单击"编辑系统环境变量" 。点击 - >环境变量 - >在系统变量下 - >向下滚动以找到" Path" - >编辑并添加以上路径。
答案 2 :(得分:-1)
首先需要导入
var startY = 0;
document.addEventListener('touchstart', function(e) {
startY = e.touches[0].screenY;
});
document.addEventListener('touchmove', function(e) {
var amountMovedY = e.touches[0].screenY - startY;
if (amountMovedY > 0) {
e.preventDefault();
}
// Disable move action when movement amount is negative (user tries to positive to top!)
});
然后你可以使用其他导入