gpt4 book ai didi

python - 使用 SeleniumLibrary 中的 ScreenshotKeywords

转载 作者:行者123 更新时间:2023-12-01 09:30:53 26 4
gpt4 key购买 nike

我正在尝试创建一个自定义 python 库,我可以将其与 RobotFramework 一起使用来运行我的测试。到目前为止,我只在代码中使用 capture_page_screenshot() 方法时遇到问题。我似乎无法找出调用该函数的正确方法。

我该如何解决这个问题?

from SeleniumLibrary import ScreenshotKeywords

def screenshot():
ScreenshotKeywords.capture_page_screenshot()

最佳答案

最简单的方法是获取对套件已导入的 selenium 库的引用,然后在该实例上调用关键字。您可以使用内置关键字 get library instance 获取对该库的引用。

from robot.libraries.BuiltIn import BuiltIn

def screenshot():
se2lib = BuiltIn().get_library_instance("SeleniumLibrary")
se2lib.capture_page_screenshot()

关于python - 使用 SeleniumLibrary 中的 ScreenshotKeywords,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49974379/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com