使用python写pbl测试脚本,网页是http://101.133.175.29:9527/webface/login,email:hmxia,密码:1234 登录之后点击实施管理中的所有实施课程,我的实施课程,所有项目,我的评审管理,跳转到对应页面
时间: 2024-11-13 21:39:50 浏览: 12
使用Python编写PBL(Page Object Model)测试脚本来自动化网页操作可以借助Selenium库,它是一个强大的浏览器自动化工具。以下是一个简化的步骤示例:
首先,你需要安装selenium、requests和BeautifulSoup等库,如果还没有安装,可以使用pip来安装:
```bash
pip install selenium requests beautifulsoup4
```
然后,创建一个名为`webpage.py`的文件,定义基础的PBL类和具体的页面对象:
```python
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from bs4 import BeautifulSoup
class BasePage(object):
def __init__(self, driver):
self.driver = driver
def wait_element_visible(self, element_locator):
return WebDriverWait(self.driver, 10).until(
EC.visibility_of_element_located(element_locator)
)
class LoginPage(BasePage):
email_input = (By.ID, "email")
password_input = (By.ID, "password")
login_button = (By.XPATH, "//button[text()='登录']")
def login(self, email, password):
self.driver.get("http://101.133.175.29:9527/webface/login")
self.wait_element_visible(self.email_input).send_keys(email)
self.wait_element_visible(self.password_input).send_keys(password)
self.login_button.click()
# 类定义其他页面对象...
class ImplementationManagementPage(BasePage):
# ...定义元素定位和相应的操作...
if __name__ == "__main__":
driver = webdriver.Chrome() # 如果是Chrome,替换为你实际的驱动路径
page = LoginPage(driver)
page.login("hmxia", "1234") # 登录
# 跳转并执行页面操作
implementation_mgmt_page = ImplementationManagementPage(driver) # 初始化实施管理页面
# 执行实施管理页面的操作,如点击按钮等...
# 等待页面加载完成后再跳转至其他功能
implementation_mgmt_page.wait_element_visible(implementation_mgmt_page.my_implementations_button).click()
# 更改此处为其他需要访问的链接
# 其他页面对象类似处理...
my_reviews_management_page = MyReviewsManagementPage(driver)
my_reviews_management_page.navigate_to_my_reviews()
driver.quit()
```
记得将上述代码中的元素定位符(`element_locator`)替换为实际网页上对应的HTML标签和属性。
阅读全文