English 中文(简体)
Working With Radio Button
  • 时间:2024-03-22 01:12:43

Robot Framework - Working With Radio Button


Previous Page Next Page  

在测试方面,必须了解如何与浏览器互动,并确定html的内容。 以机器人框架与投入领域合作非常容易。 在本章中,我们将学习如何利用Selenium图书馆与广播电台纽顿合作。 为了与无线电台合作,我们需要定位器——该无线电台的主要独特标识。

我们将在此讨论以下事项:

    Project Setup for Radio Button Testing

    Test case for Radio Button

Project Setup For Radio Button Testing

我们将首先在里德建立一个与浏览器合作的项目。 露天使用ide。 页: 1

Radio Button Testing

Cpck New Project and into Name of their project as reflected in the Screenshot below.

Radio Button Testing Name

姓名是Button电台。 Cpck on OK button to Save the project.

Right-cpck on the name of the project estabpshing and Point on New Test Case

Radio Button Testing Name New

Radio Button Testing Name News

Give name to the test case and Point OK to Save it. 我们是在项目建立过程中进行的,现在将撰写无线电台的测试案例。 由于我们需要Selenium图书馆,我们必须在我们的项目中进口同样的图书馆。

http://www.un.org/Depts/DGACM/index_chinese.htm

left side Library

在点击图书馆时,将显示需要进入图书馆名称的屏幕。

Upon cpcking Library

将在现场展示Kpck和图书馆。

Upon cpcking Library displayed

名称必须与安装在现场包装的复印机名称相符。 如果名称不匹配,则按下文所示方式重新编号:

site packages

Test Case for Radio Button

无线电塔顿试验场将在定位器的帮助下选定一个无线电台。

考虑在广播台上展示以下的html

<input type="radio" name="gender" value="male" checked> Male<br/>
<input type="radio" name="gender" value="female"> Female<br/>

无线电台 姓名 是定位器。 在上述例子中, 姓名为: 我们还需要这种价值,以便我们能够选择我们想要的无线电台。 以上例子中的数值为Male和Women

现在,我们将用无线电台制作一个试验台,并在浏览器上打开。 现在,选择无线电塔顿的价值。 测试案例的细节如下:

    开放浏览器——URL——http:// localhost/robotframework/radiobutton.html in

    进入无线电台的详细信息

    排除测试案例

在撰写测试案例的关键词时,Ctrl + Spacebar。 你将获得指挥的细节。 顿电台详情

Details of Radio button

对无线电台来说,论点是团体名称和价值。 The details of the test case for Radio button selected -

Arguments of Radio button

下面是无线电台的测试页。

Test Page of Radio button

Html Code for Radiobutton. html

<html>
   <head>
      <title>Radio Button</title>
   </head>
   <body>
      <form name="myform" method="POST">
         <b>Select Gender?</b>
         <span><br/>
            <input type="radio" name="gender" value="male" checked> Male<br/>
            <input type="radio" name="gender" value="female"> Female<br/>
         </span>
      </form>
   </body>
</html>

在上述形式中,我们计划选择女性,这是一个无线电台。 在测试案例中给出了名称和价值。 现在,我们将执行测试案例,并检查上述表格的检查箱的挑选情况。

让我们执行试验案例,看到浏览器的显示——

execute the test case

试办案时,它开放了URL http:// localhost/robotframework/radiobutton.html,并选择了在测试案件中我们所给出姓名和价值的女性广播电台。

参看Ride-执行细节。

execution details in Ride

我们现在看一下报告和记录,以便了解更多细节。

Report Details

Report Details

Log Details

Log Details Radio

Details of test cases

Details of test cases

Conclusion

我们看到如何通过将无线电台的集团名称赋予试验场,来选择无线电台的数值。 利用机器人框架和图书馆进口的可用关键词,我们可以找到无线电台,并选择无线电塔顿的价值。 我们确实掌握了使用机器人框架记录和报告所实施的试验场的细节。

Advertisements