`from time import sleep
from selenium import webdriver
from selenium.webdriver.firefox.webdriver import WebDriver
from selenium.webdriver.support.ui import Select, WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
import pyautogui
import pyperclip
driver = webdriver.Firefox()
driver.get(‘https://www.luffycity.com/‘)
driver.maximize_window()
driver.find_element_by_xpath(‘/html/body/div[1]/div/div/div[2]/div/img[1]‘).click()
WebDriverWait(driver, 10).until(
EC.visibility_of_element_located((By.XPATH, ‘/html/body/div[1]/div/div/header/div/div/div[2]/div[2]/span‘)))
driver.find_element_by_xpath(‘/html/body/div[1]/div/div/header/div/div/div[2]/div[2]/span‘).click()
driver.find_element_by_xpath(‘/html/body/div[1]/div/div/div[2]/div/div[2]/div[1]/div[1]/input‘).clear()
driver.find_element_by_xpath(‘/html/body/div[1]/div/div/div[2]/div/div[2]/div[1]/div[1]/input‘).send_keys(‘username‘)
driver.find_element_by_xpath(‘/html/body/div[1]/div/div/div[2]/div/div[2]/div[1]/div[2]/input‘).clear()
driver.find_element_by_xpath(‘/html/body/div[1]/div/div/div[2]/div/div[2]/div[1]/div[2]/input‘).send_keys(
‘password‘)
driver.find_element_by_xpath(‘/html/body/div[1]/div/div/div[2]/div/div[2]/button‘).click()
sleep(3)
driver.get(‘https://www.luffycity.com/play/13735‘)
def record_screen(count):
for i in range(count):
# 点击一次刷新按钮
driver.refresh()
# 当全屏按钮出现时,点击全屏按钮,
WebDriverWait(driver, 10).until(EC.visibility_of_element_located(
(By.XPATH, ‘/html/body/div[1]/div/div/div/div[1]/div[2]/div/div/div[2]/div[2]/div[2]/div[8]/button‘)))
driver.find_element_by_xpath(
‘/html/body/div[1]/div/div/div/div[1]/div[2]/div/div/div[2]/div[2]/div[2]/div[8]/button‘).click()
# 点击开始
driver.find_element_by_xpath(‘/html/body/div[1]/div/div/div/div[1]/div[2]/div/div/div[1]/div[4]/span‘).click()
# 通过快捷键ctrl+F1开始录屏,用autoit切换到浏览器
pyautogui.hotkey(‘ctrl‘, ‘F1‘)
# 等待5s,查询class="section active"下面的h5的名称,并copy,
record_screen(200)
`
原文:https://www.cnblogs.com/nonamelake/p/14509308.html