到目前为止,我正在使用机器人框架实现iframes的自动化,但是我无法输入文本。
Current Frame Contains xpath=//iframe[contains(@id,'sq-card-number')] NONE
#Frame Should Contain xpath=//iframe[contains(@id,'sq-card-number')] Card Number
Wait Until Element Is Visible xpath=//iframe[contains(@id,'sq-card-number&
假设我在我的项目中使用了一个开源框架,并且我不会为该框架贡献(提交更改),并且当前的版本是稳定的,那么我们是否应该在可能的情况下保持框架不变呢?
例如,如果我在一个框架类中发现一个函数不能满足我的需求:
public class Fruit{
public float calculatePrice(){
return weight*1.2;
}
}
我会包装它以添加我的需求:
public class MyFruit{
Fruit fruit;
public float calculatePrice(){
return fruit