to_frame()返回自己

This commit is contained in:
g1879 2021-12-18 01:30:39 +08:00
parent 4c0d08e822
commit cc7c376187

View File

@ -338,7 +338,7 @@ class DriverPage(BasePage):
tab = self.driver.window_handles[tab] if isinstance(tab, int) else tab
self.driver.switch_to.window(tab)
def to_frame(self, loc_or_ele: Union[int, str, tuple, WebElement, DriverElement] = 'main') -> None:
def to_frame(self, loc_or_ele: Union[int, str, tuple, WebElement, DriverElement] = 'main') -> 'DriverPage':
"""跳转到frame \n
可接收frame序号(0开始)id或name查询字符串loc元组WebElement对象DriverElement对象 \n
传入 'main' 跳到最高层传入 'parent' 跳到上一层 \n
@ -351,7 +351,7 @@ class DriverPage(BasePage):
to_frame('main') - 跳到最高层 \n
to_frame('parent') - 跳到上一层 \n
:param loc_or_ele: iframe的定位信息
:return: None
:return: 返回自己用于链式操作
"""
# 根据序号跳转
if isinstance(loc_or_ele, int):
@ -385,6 +385,8 @@ class DriverPage(BasePage):
ele = self.ele(loc_or_ele)
self.driver.switch_to.frame(ele.inner_ele)
return self
def screenshot(self, path: str, filename: str = None) -> str:
"""截取页面可见范围截图 \n
:param path: 保存路径