在赛普拉斯中配置环境变量

时间:2019-03-19 21:44:11

标签: cypress

我正在尝试为赛普拉斯的测试套件设置不同的环境。当我向Cypress提供此字典作为JSON时,Cypress会抛出错误。它无法读取JSON(无法读取用户数组(没有它可以正常工作))。

/**
 * A simple {@link Fragment} subclass.
 */
public class DisplayWeatherFrag extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_display_weather, container, false);

        return view;
    }

    @Override
    public void onAttach(Context context) {
        super.onAttach(context);
        HashMap<String, WeatherForeCast>HashMapWeatherInfo = null;
        Bundle b;
        b = getArguments();
        HashMapWeatherInfo = (HashMap<String, WeatherForeCast>) b.getSerializable("hashmap");

    }

}

或者有人可以建议在赛普拉斯中配置不同用户的最佳方法是什么。我已经阅读了文档,并且希望通过插件配置其他用户。

1 个答案:

答案 0 :(得分:1)

环境变量是字符串,因此只需传入对象的字符串化版本