当前位置: 首页 > news >正文

秀色直播app软件大全手机系统优化软件哪个好

秀色直播app软件大全,手机系统优化软件哪个好,无锡哪里有做网站的公司,wordpress 图片加链接地址一、什么是 Robot Framework? 1. Robot Framework 的历史由来 Robot Framework是一种通用的自动化测试框架,最早由Pekka Klrck在2005年开发,并由Nokia Networks作为内部工具使用。后来,该项目以开源形式发布,并得到了…

一、什么是 Robot Framework?

1. Robot Framework 的历史由来

Robot Framework是一种通用的自动化测试框架,最早由Pekka Klärck在2005年开发,并由Nokia Networks作为内部工具使用。后来,该项目以开源形式发布,并得到了广泛的社区支持和贡献。

2.官方介绍:

Robot Framework is a generic open source automation framework. It can be used for test automation and robotic process automation (RPA).
Robot Framework 是一个通用的开源自动化框架。它可用于测试自动化和机器人流程自动化 (RPA)。

Robot Framework is supported by Robot Framework Foundation. Many industry-leading companies use the tool in their software development.
Robot Framework 由 Robot Framework Foundation 提供支持。许多行业领先的公司在其软件开发中使用该工具。

Robot Framework is open and extensible. Robot Framework can be integrated with virtually any other tool to create powerful and flexible automation solutions. Robot Framework is free to use without licensing costs.
机器人框架是开放且可扩展的。Robot Framework几乎可以与任何其他工具集成,以创建强大而灵活的自动化解决方案。Robot Framework 可免费使用,无需许可费用。

Robot Framework has an easy syntax, utilizing human-readable keywords. Its capabilities can be extended by libraries implemented with Python, Java or many other programming languages. Robot Framework has a rich ecosystem around it, consisting of libraries and tools that are developed as separate projects.
Robot Framework 具有简单的语法,使用人类可读的关键字。它的功能可以通过使用 Python、Java 或许多其他编程语言实现的库来扩展。Robot Framework 拥有丰富的生态系统,由作为独立项目开发的库和工具组成。

3. 基本语法

  • 测试用例以*** Test Cases ***开头,后跟一个或多个测试用例。
  • 关键字定义以*** Keywords ***开头,后跟一个或多个关键字定义。
  • 测试用例和关键字定义使用缩进来表示层次结构。
  • 关键字和关键字参数之间使用制表符或多个空格分隔。

4. Code is worth a thousand words代码胜过千言万语

简单示例
此示例包含用户登录的单个测试用例。它使用模拟的后端 API 进行用户管理。该测试套件TestSuite.robot包含两个测试用例“使用密码登录用户”和“使用错误密码拒绝登录”。此测试用例从资源文件 keywords.resource 调用关键字。

TestSuite.robot:

*** Settings ***
Documentation     A test suite for valid login.
...
...               Keywords are imported from the resource file
Resource          keywords.resource
Default Tags      positive*** Test Cases ***
Login User with PasswordConnect to ServerLogin User            ironman    1234567890Verify Valid Login    Tony Stark[Teardown]    Close Server ConnectionDenied Login with Wrong Password[Tags]    negativeConnect to ServerRun Keyword And Expect Error    *Invalid Password    Login User    ironman    123Verify Unauthorised Access[Teardown]    Close Server Connection

Resource File 资源文件
keywords.resource 包含关键字定义。资源文件还使用库 CustomLibrary.py 中基于 python 的关键字来实现更专业的功能。存在无数社区制作的库,它们以各种方式扩展了机器人框架!

keywords.resource:

*** Settings ***
Documentation     This is a resource file, that can contain variables and keywords.
...               Keywords defined here can be used where this Keywords.resource in loaded.
Library           CustomLibrary.py*** Keywords ***
Connect to ServerConnect    fe80::aede:48ff:fe00:1122Close Server ConnectionDisconnectLogin User[Arguments]    ${login}    ${password}Set Login Name    ${login}Set Password    ${password}Execute LoginVerify Valid Login[Arguments]    ${exp_full_name}${version}=    Get Server VersionShould Not Be Empty    ${version}${name}=    Get User NameShould Be Equal    ${name}    ${exp_full_name}Verify Unauthorised AccessRun Keyword And Expect Error    PermissionError*    Get Server VersionLogin Admin[Documentation]    'Login Admin' is a Keyword....                It calls 'Login User' from 'CustomLibrary.py'Login User    admin    @RBTFRMWRK@Verify Valid Login    Administrator

CustomLibrary.py:

from TestObject import TestObject
from robot.api.logger import info, debug, trace, consoleclass CustomLibrary:'''This is a user written keyword library.These libraries can be pretty handy for more complex tasks an typicallymore efficiant to implement compare to Resource files.However, they are less simple in syntax and less transparent in test protocols.The TestObject object (t) has the following public functions:class TestObject:def authenticate(self, login: str, password: str) -> str: ...def logout(self, token): ...def get_version(self, token) -> str: ...def get_user_id(self, token, login) -> str: ...def get_user_name(self, token, user_id) -> str: ...def get_user(self, token, user_id=None) -> Dict[str, str]: ...def get_user_all(self, token) -> List[Dict[str, str]]: ...def delete_user(self, token, userid): ...def get_logout(self, token): ...def put_user_password(self, token, new_password, user_id=None): ...def put_user_name(self, token, name, user_id=None): ...def put_user_right(self, token, right, user_id): ...def post_new_user(self, token, name, login) -> str: ...'''ROBOT_LIBRARY_SCOPE = 'SUITE'def __init__(self) -> None:self._session = Noneself.login = ''self.password = ''self._connection: TestObject = Nonedef connect(self, ip):self._connection = TestObject(ip)def disconnect(self):self._connection = None@propertydef connection(self):if not self._connection:raise SystemError('No Connection established! Connect to server first!')return self._connection@propertydef session(self):if self._session is None:raise PermissionError('No valid user session. Authenticate first!')return self._sessiondef set_login_name(self, login):'''Sets the users login name and stores it for authentication.'''self.login = logininfo(f'User login set to: {login}')def set_password(self, password):'''Sets the users login name and stores it for authentication.'''self.password = passwordinfo(f'Password set.')def execute_login(self):'''Triggers the authentication process at the backend and stores the session token.'''self._session = self.connection.authenticate(self.login, self.password)if self.session:info(f'User session successfully set.')debug(f'Session token is: {self.session}')self.login = self.password = ''def login_user(self, login, password) -> None:'''`Login User` authenticates a user to the backend.The session will be stored during this test suite.'''self._session = self.connection.authenticate(login, password)def logout_user(self):'''Logs out the current user.'''self.connection.logout(self.session)def create_new_user(self, name, login, password, right):'''Creates a new user with the give data.'''user_id = self.connection.post_new_user(self.session, name, login)self.connection.put_user_password(self.session, password, user_id=user_id)self.connection.put_user_right(self.session, right, user_id)def change_own_password(self, new_password, old_password):'''Changes the own password given the new and current one.'''self.connection.put_user_password(self.session, new_password, old_password)def change_users_password(self, login, new_password):'''Changes the password of a user by its name.Requires Admin priviliges!'''user_id = self.get_user_id(login)self.connection.put_user_password(self.session, new_password, user_id=user_id)def get_all_users(self):'''`Get All Users` does return a list of user-dictionaries.A user dictionary has the keys `name`, `login`, `right` and `active`.This keyword need Admin privileges.Example:`{'name': 'Peter Parker', 'login': 'spider', 'right': 'user', 'active': True}`'''return self.connection.get_user_all(self.session)def get_user_details(self, user_id=None):'''Returs the user details of the given user_id or if None the own user data.'''return self.connection.get_user(self.session, user_id)def get_user_id(self, login):'''Returns the user_id based on login.'''return self.connection.get_user_id(self.session, login)def get_username(self, user_id=None):'''Returns the users full name of the given user_id or if None the own user data.'''return self.connection.get_user_name(self.session, user_id)def get_server_version(self):return self.connection.get_version(self.session)

二、为什么选择 Robot Framework

Robot Framework支持插件化的架构,可以使用许多内置库和第三方库来扩展功能,例如SeleniumLibrary用于Web自动化测试,RequestsLibrary用于API测试等。

1. Robot Framework 的常见用法

Robot Framework可用于各种自动化测试任务,包括:

  • Web应用测试
  • API测试
  • 数据库测试
  • 移动应用测试
  • 自动化任务和流程
  • 持续集成和部署

2. 常见关键字库

Robot Framework有广泛的关键字库可供使用,以下是一些常见的关键字库:

  • SeleniumLibrary:用于Web应用测试,包括页面操作、表单填写、页面验证等。
  • RequestsLibrary:用于发送HTTP请求,进行API测试。
  • DatabaseLibrary:用于数据库测试,支持各种数据库操作。
  • SSHLibrary:用于通过SSH执行命令和操作远程服务器。
  • ExcelLibrary:用于读写Excel文件。
  • DateTimeLibrary:用于日期和时间相关操作。

3. 技术架构和原理

Robot Framework的技术架构基于关键字驱动的测试方法。它使用Python语言编写,通过解析测试用例文件和执行测试步骤来实现自动化测试。

Robot Framework的核心原理如下:

  1. 测试用例文件(通常使用.robot扩展名)包含测试用例、关键字定义和设置。
  2. 测试执行器(test runner)读取并解析测试用例文件。
  3. 测试执行器调用相应的关键字库(如SeleniumLibrary、RequestsLibrary等)执行测试步骤。
  4. 关键字库提供了一组关键字(如打开浏览器、点击按钮等)来操作被测试的系统。
  5. 执行结果被记录下来,并生成报告和日志文件。

三、怎么使用 Robot Framework

1. Robot Framework的安装方法

1. 安装Python

Robot Framework是基于Python的,所以首先需要安装Python。你可以从Python官方网站(https://www.python.org)下载适合你操作系统的Python安装程序,并按照官方指南进行安装。

2. 安装Robot Framework

一旦Python安装完成,你可以使用Python的包管理工具pip来安装Robot Framework。打开终端或命令提示符窗口,并执行以下命令:

pip install robotframework

这将下载并安装最新版本的Robot Framework及其依赖项。

3. 安装额外的关键字库

根据你的测试需求,你可能需要安装额外的关键字库。例如,如果你需要进行Web应用测试,可以安装SeleniumLibrary。以安装SeleniumLibrary为例,执行以下命令:

pip install robotframework-seleniumlibrary

类似地,你可以使用pip命令安装其他关键字库,具体取决于你的需求。

4. 验证安装

安装完成后,你可以验证Robot Framework是否成功安装。在终端或命令提示符窗口中执行以下命令:

robot --version

如果成功安装,它将显示安装的Robot Framework的版本号。

2. 自动化测试用例常见实例代码

示例1:Web应用测试

*** Settings ***
Library    SeleniumLibrary*** Test Cases ***
Open Browser and Verify TitleOpen Browser    https://www.example.com    chromeTitle Should Be    Example DomainClose Browser

示例2:API测试

*** Settings ***
Library    RequestsLibrary*** Test Cases ***
Get User DetailsCreate Session    Example API    https://api.example.com${response}    Get Request    Example API    /users/123Should Be Equal As Strings    ${response.status_code}    200${user_details}    Set Variable    ${response.json()}Log    ${user_details}Delete All Sessions

示例3:数据库测试

*** Settings ***
Library    DatabaseLibrary
Library    Collections*** Test Cases ***
Verify User in DatabaseConnect To Database    pymysql    mydatabase    myusername    mypassword@{query_result}    Query    SELECT * FROM users WHERE id = '123'Should Contain    ${query_result}    username=JohnDisconnect From Database

示例4:SSH操作

*** Settings ***
Library    SSHLibrary*** Test Cases ***
Execute Command on Remote ServerOpen Connection    192.168.1.100    username=myusername    password=mypassword${output}    Execute Command    ls /path/to/directoryShould Contain    ${output}    myfile.txtClose Connection

示例5:Excel操作

*** Settings ***
Library    ExcelLibrary*** Test Cases ***
Read Data From ExcelOpen Excel    path/to/excel/file.xlsx${cell_value}    Read Cell Data By Name    Sheet1    A1Log    ${cell_value}Close Excel

四、相关链接

  • Robot Framework官方网站
  • Robot Framework用户指南
  • Robot Framework论坛
  • Robot Framework Github

RobotFramework基金会成员
RobotFramework基金会成员

http://www.ds6.com.cn/news/70873.html

相关文章:

  • 张家港做网站广告公司广告策划书
  • 百度推广是否做网站seo优化推广工程师
  • 企业网站诊断与优化方案网络推广学校
  • 什么网站做跨境电子商务百度人工电话
  • 安徽设计公司北京seo关键词优化收费
  • 犀牛云做网站做网站需要多钱市场监督管理局投诉电话
  • 网站备案信息真实性核验单 多个域名优化软件
  • 哈尔滨做公司网站的公司有哪些广告留电话号的网站
  • 网站建设的书 推荐百度账号官网
  • 那些市区做网站群sem培训学校
  • 自助建站网站源码app注册拉新平台
  • 怎么在网站做浮动图标网站关键词优化系统
  • 可以做测试网站百度竞价运营
  • 武汉山水人家装饰公司苏州企业网站关键词优化
  • 专门做喷涂设备的网站设计师经常用的网站
  • 做网站用什么系统seo产品优化免费软件
  • 政府网站建设大事记google海外推广
  • 51zwd做网站seo外包如何
  • 网站建设 电话网络营销渠道策略研究
  • 这个网站的建设流程百度推广客户端教程
  • 建网站自己与租云服务器哪个好百度app官网
  • 邯郸专业网站建设公司网站推广的公司
  • 众创空间那个网站做的好google搜索引擎入口google
  • 党建类网站建设风格seoyoon
  • 网站建设还能赚钱吗一键清理加速
  • wordpress右侧悬浮插件windows优化大师卸载不了
  • dw cs4怎么做网站爱网站查询挖掘工具
  • 站长统计入口国际最新新闻热点事件
  • 全网vip视频网站怎么做千锋教育培训机构可靠吗
  • 包做包装的网站精准营销的三要素