测试积点老人 发表于 2021-8-11 10:49:13

centos服务器端运行python+selenium+webdriver出现报错

利用python+selenium+webdriver在阿里云centos服务器运行爬虫,进行模拟登录教务系统+获取cookie的操作。代码如下:
from selenium import webdriver
from selenium.webdriver.support.select import Select
import time
options = webdriver.ChromeOptions()
options.add_argument('blink-settings=imagesEnabled=false')
driver = webdriver.Chrome(chrome_options=options,
                        executable_path="C:\\Users\\86155\\AppData\\Local\\Google\\Chrome\\Application\\chromedriver.exe")
driver.maximize_window()
'''登陆教务系统'''
url = 'http://uaaap-swu-edu-cn-s.sangfor.vpn.swu.edu.cn:8118/cas/login?service=http%3A%2F%2Fjw.swu.edu.cn%2Fsso%2Fzllogin'
driver.get(url)
driver.find_element_by_xpath('//*[@id="username"]').send_keys('测试账号')
driver.find_element_by_xpath('//*[@id="password"]').send_keys('测试密码')
'''登陆前页面验证'''
print(driver.find_element_by_xpath('//*[@id="loginForm"]/div/div/h3').text)
driver.find_element_by_xpath('//*[@id="loginForm"]/div/div/div/div/a').click()
time.sleep(1)
'''登陆后浏览器刷新原页面'''
'''登陆后页面验证(从这里开始报错)'''
print(driver.find_element_by_xpath('//*[@id="yhxxIndex"]/div/div/p').text)
cookies = driver.get_cookies()在电脑上运行良好成功获得了cookie,然而在服务器端超时运行、然后报错,图片如下:

海海豚 发表于 2021-8-12 10:45:05

未定位到元素,看下定位方式是不是有问题

bellas 发表于 2021-8-12 11:18:12

换个浏览器,试试看看能定位相应元素吗

qqq911 发表于 2021-8-12 12:08:01

未找到该元素

jingzizx 发表于 2021-8-12 18:29:58

没出现把
页: [1]
查看完整版本: centos服务器端运行python+selenium+webdriver出现报错