如果我们想检查一个文本框在每次自动化运行后的文字结果,则我们通过下面哪个函数来获取文字内容
GetTOProperty B
GetROProperty C
SetROProperty D
SetTOProperty GetTOProperty和 GetROProperty都用于取出对象的某个具体属性的值,它们的语法和用法几近相同 ,唯一的区别就是GetTOProperty取出的是录制对象的属性值,而 GetROProperty取出的是在回放过程中运行的对象的属性值
GetTOProperties,是指取出录制对象的所有属性
下面哪种写法是正确的
Select category,AVG(productprice)平均价格from productinfogroupbyproductpriceHAVINGAVG(category)>2000; B
Select category,AVG(productprice)平均价格from productinfogroupbycategoryHAVINGAVG(productprice)>2000; C
Select category,AVG(productprice)平均价格from productinfogroupbyproductpriceHAVINGcategory>2000; D
Select category,AVG(productprice) 平均价格from productinfo groupby productprice HAVINGproductprice>2000; 3
linux 文档编辑器中跳到文档末尾的快捷键是D A
下列哪一个不是UML 的动态图
软件设计的主要任务是设计软件的结构、模块