问卷星自动填写脚本
2025年3月23日测试批量填写80份正常。
需要模拟鼠标操作防止被识别机器人
import re
from playwright.async_api import Playwright, async_playwright
#from playwright.sync_api import Playwright, sync_playwright, expect
import random
import asyncio
import time
def random_int(min=2, max=4):
random.seed(time.time())
return str(random.randint(min, max))
async def mouse_random_move(page):
# 模拟鼠标随机平滑移动
for i in range(5):
await page.mouse.move(random.randint(0, 1000), random.randint(0, 1000))
await asyncio.sleep(0.1)
# 模拟鼠标随机停留
#time.sleep(random.randint(0,1))
# 鼠标滚轮
async def run(browser) -> None:
context = await browser.new_context()
page = await context.new_page()
await page.goto("https://www.wjx.cn/vm/Q0x3Wuq.aspx")
await page.get_by_text("男").click()
await page.get_by_text("大三").click()
await page.get_by_text("1000-").click()
await page.locator("div").filter(has_text=re.compile(r"^全部来自家庭部分来自家庭,部分靠自己赚取全部靠自己赚取$")).get_by_role("link").nth(1).click()
await mouse_random_move(page)
await page.locator("div").filter(has_text=re.compile(r"^300以下300-600600-10001000以上$")).get_by_role("link").nth(1).click()
await mouse_random_move(page)
await page.locator("div").filter(has_text=re.compile(r"^无1-200200-500500以上$")).get_by_role("link").nth(2).click()
await mouse_random_move(page)
await page.locator("div").filter(has_text=re.compile(r"^实体店网购$")).get_by_role("link").first.click()
await page.locator("div").filter(has_text=re.compile(r"^100以下100-500500-10001000以上$")).get_by_role("link").nth(3).click()
await mouse_random_move(page)
await page.locator("div").filter(has_text=re.compile(r"^无200以下200-500500-10001000以上$")).get_by_role("link").nth(2).click()
await page.locator("#div10").get_by_role("link").nth(2).click()
await mouse_random_move(page)
await page.locator("#div11").get_by_role("link").nth(1).click()
await mouse_random_move(page)
await page.locator("#div12").get_by_role("link").first.click()
await mouse_random_move(page)
await page.locator("#div13").get_by_role("link").nth(1).click()
await mouse_random_move(page)
await page.locator("#div14").get_by_role("link").nth(2).click()
await mouse_random_move(page)
await page.locator("#div15").get_by_role("link").nth(1).click()
await mouse_random_move(page)
await page.locator("#div16").get_by_role("link").nth(2).click()
await mouse_random_move(page)
await page.locator("#div17").get_by_role("link").nth(1).click()
await mouse_random_move(page)
await page.locator("div:nth-child(2) > .jqcheckwrapper > .jqcheck").first.click()
await mouse_random_move(page)
await page.locator("div:nth-child(5) > .jqcheckwrapper > .jqcheck").first.click()
await mouse_random_move(page)
await page.locator("div:nth-child(7) > .jqcheckwrapper > .jqcheck").click()
await mouse_random_move(page)
await page.locator("#div19").get_by_role("link").nth(3).click()
await mouse_random_move(page)
await page.locator("#div20").get_by_role("link").nth(1).click()
await mouse_random_move(page)
await page.locator("#div20").get_by_role("link").first.click()
await mouse_random_move(page)
await page.locator("#div21 > .ui-controlgroup > div:nth-child(2) > .jqcheckwrapper > .jqcheck").click()
await mouse_random_move(page)
await page.locator("#div21 > .ui-controlgroup > div:nth-child(4) > .jqcheckwrapper > .jqcheck").click()
await page.get_by_text("提交").click()
await page.wait_for_function("window.location.href !== 'https://www.wjx.cn/vm/Q0x3Wuq.aspx'")
await page.wait_for_timeout(3000)
await page.close()
await context.close()
async def main() -> None:
async with async_playwright() as p:
browser = await p.chromium.launch(headless=True)
tasks = []
for i in range(6):
tasks.append(run(browser))
titles=await asyncio.gather(*tasks)
for title in titles:
print(title)
await browser.close()
if __name__ == "__main__":
asyncio.run(main())