51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2792|回复: 1
打印 上一主题 下一主题

[原创] 使用selenium IDE自动生成脚本后运行不通过的问题。

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2009-2-4 15:31:15 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
用selenium IDE自动生成脚本如下:
using System;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using NUnit.Framework;
using Selenium;

namespace SeleniumTests
{
        [TestFixture]
        public class NewTest
        {
                private ISelenium selenium;
                private StringBuilder verificationErrors;
               
                [SetUp]
                public void SetupTest()
                {
                        selenium = new DefaultSelenium("localhost", 4444, "*chrome", "http://change-this-to-the-site-you-are-testing/");
                        selenium.Start();
                        verificationErrors = new StringBuilder();
                }
               
                [TearDown]
                public void TeardownTest()
                {
                        try
                        {
                                selenium.Stop();
                        }
                        catch (Exception)
                        {
                                // Ignore errors if unable to close the browser
                        }
                        Assert.AreEqual("", verificationErrors.ToString());
                }
               
                [Test]
                public void TheNewTest()
                {
                        selenium.Open("/Product/ProductAdd.aspx");
                        selenium.Click("link=添加商品");
                        selenium.WaitForPageToLoad("30000");
                        selenium.Type("ctl00_ContentPlaceHolder1_ProductDetail_txtKeyValue", "a");
                        selenium.Select("ctl00_ContentPlaceHolder1_ProductDetail_drpManufacturer", "label=多普达");
                        selenium.Select("ctl00_ContentPlaceHolder1_ProductDetail_drpBrand", "label=DOPODO");                        selenium.WaitForPageToLoad("30000");
                        selenium.Click("//img[@alt='选择商品分类']");
                        selenium.SelectFrame("popupFrame");
                        selenium.Click("//img[@alt='Expand 手机通讯']");
                        selenium.Click("//img[@alt='Expand 手机配件']");
                        selenium.Click("ctl00_ContentPlaceHolder1_CategoryTreeUC1_TreeViewCategoryn6CheckBox");
                        selenium.Click("ctl00_ContentPlaceHolder1_btnConfirm");
                        selenium.WaitForPageToLoad("30000");
                        selenium.SelectFrame("relative=up");
                        selenium.Type("ctl00_ContentPlaceHolder1_ProductDetail_txtItemName", "test20090204");
                        selenium.Type("ctl00_ContentPlaceHolder1_ProductDetail_txtItemDescription", "0204");
                        selenium.Type("ctl00_ContentPlaceHolder1_ProductDetail_txtPrice", "1000");
                        selenium.Type("ctl00_ContentPlaceHolder1_ProductDetail_txtDiscountPrice", "100");
                        selenium.Type("ctl00_ContentPlaceHolder1_ProductDetail_txtPrintDescription", "0204");
                        selenium.Type("ctl00_ContentPlaceHolder1_ProductDetail_txtLineDescription", "0204");
                        selenium.Click("ctl00_ContentPlaceHolder1_ProductDetail_btnSave");
                        selenium.WaitForPageToLoad("30000");
                        selenium.Click("alertButton");
                        selenium.Click("ctl00_ContentPlaceHolder1_ProductDetail_btnSave");
                        selenium.WaitForPageToLoad("30000");
                        selenium.Click("alertButton");
                        selenium.Click("chkItem");
                        selenium.Click("ctl00_ContentPlaceHolder1_ProductListUC_btnDown");
                        selenium.WaitForPageToLoad("30000");
                        selenium.Click("alertButton");
                        selenium.Click("//img[@alt='删除']");
                        selenium.Click("confirmOKButton");
                        selenium.WaitForPageToLoad("30000");
                        selenium.Click("alertButton");
                }
        }
}
当回放到("ctl00_ContentPlaceHolder1_ProductDetail_drpBrand", "label=DOPODO");        时日志报错如下
[error] Option with label 'DOPODO' not found
原因是只有当选择生产商才能加载对应的品牌,如图

当我把代码改成("ctl00_ContentPlaceHolder1_ProductDetail_drpBrand", "label=请选择");这句代码就能通过了,需要高手帮忙解决当下拉菜单有关联关系时如何赋值才能加载我预期的目标值呢?

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?(注-册)加入51Testing

x
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
 楼主| 发表于 2009-2-4 16:30:26 | 只看该作者

帮自己顶一下^_^

帮自己顶一下^_^
回复 支持 反对

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-8 17:15 , Processed in 0.085228 second(s), 28 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表