1
0
Fork 0

上传文件至 app/test

Bug511-Bosh
丁晟晔 2024-05-06 11:36:36 +08:00 committed by Bosh
parent 7d5b1c0ed4
commit 423826e640
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
import time
import pytest
from selenium import webdriver
from selenium.webdriver import ActionChains
from selenium.webdriver.common.by import By
def test_bug551():
driver = webdriver.Edge()
driver.maximize_window()
driver.get("http://127.0.0.1:5000/")
driver.find_element(By.CSS_SELECTOR, 'a[href="/login"]').click()
driver.find_element(By.CLASS_NAME, 'username').send_keys('dzy')
driver.find_element(By.CLASS_NAME, 'password').send_keys('123456')
driver.find_element(By.CLASS_NAME, 'btn').click()
article = driver.find_element(By.ID, 'article')
actions = ActionChains(driver)
actions.move_to_element(article)
actions.click_and_hold()
actions.move_by_offset(450, 200)
actions.release()
actions.perform()
time.sleep(5)