gpt4 book ai didi

python - 如何在 SST Python 中设置 results_directory

转载 作者:太空宇宙 更新时间:2023-11-04 05:57:07 25 4
gpt4 key购买 nike

我问这个问题有点傻,因为使用基本的 Selenium ,我保存屏幕截图没有问题,但使用 SST 我使用 take_screenshot('screenshot_name.png') 它告诉我应设置 results_directory。问题是如何设置 results_directory。我找到的所有示例都将其设置为“NONE”,但这并不能满足我的测试需要。

下面是我的代码是这样写的:

import unittest
from sst.actions import *
from sst import cases, config

config.results_directory = None

class TestMyTest(cases.SSTTestCase):

def test_mytestcase_home_page(self):
go_to('http://www.mywebpage.com')
assert_title_contains('MyWebPage')
#Main page is displayed
take_screenshot(filename='C/Users/Brenda/test/SST Test Project/results/home_page.png',add_timestamp=True)

最佳答案

我有以下脚本使用谷歌为我工作。诀窍是将结果目录添加到位于@{dir}\Python27\Lib\site-packages\sst\config.py 的实际配置文件并添加 results_directory = "C:\Users\{me}\Desktop\Python-pip-SST\results"

import unittest
from sst.actions import *
from sst import cases, config

#config.results_directory = "C:\Users\{me}\Desktop\Python-pip-SST\results"

go_to('https://www.google.com/')
assert_title_contains('Google')
#Main page is displayed
take_screenshot(filename='home_page.png',add_timestamp=True)

而且,您还应该能够覆盖测试的结果路径。您的工作代码应如下所示

import unittest
from sst.actions import *
from sst import cases, config

#Just to be safe side try not to use any spaces in filename
config.results_directory = "C:/Users/Brenda/test/SSTTestProject/results"

class TestMyTest(cases.SSTTestCase):

def test_mytestcase_home_page(self):
go_to('http://www.mywebpage.com')
assert_title_contains('MyWebPage')
#Main page is displayed
take_screenshot(filename="home_page.png",add_timestamp=True)

如果对您有所帮助,我添加了屏幕截图。更改文件路径 innconfig 文件或从测试对我来说工作正常 enter image description here

关于python - 如何在 SST Python 中设置 results_directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27134553/

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