赞
踩
从问卷星网站找的一个模板
driver.find_element_by_xpath
js="var q=document.documentElement.scrollTop=800" #下拉像素(800是基于最顶端测算的距离) driver.execute_script(js) #执行下拉像素操作
from selenium import webdriver
import random
import time
def selection(*a): #单选题 输入参数为任意个数str(xpath) 返回值为某一随机str(xpath)
n = len(a)
num = random.randint(1,n)
for i in range(1,n+1,1):
if(i==num):
return a[num-1]
hours = selection('5', '10', '15', '20')
money = str(random.uniform(1500, 2500))
time = selection('一个月','两个月','三个月','四个月','五个月','六个月','一年','两年','三年'<
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。