Exemplo n.º 1
0
        public void CreateLocalRepositorySingleStorageLocationDefault(string datapath)
        {
            repoDialog            = repoPage.ClickAddNewRepoBtn();
            storageLocationDialog = repoDialog.ClickAddNewStorageLocationBtn();
            var datapathField     = storageLocationDialog.GetLocalDataPathInputField();
            var metadatapathField = storageLocationDialog.GetLocalMetadataPathInputField();

            datapathField.TypeIn(datapath);
            metadatapathField.TypeIn(datapath);
            storageLocationDialog.Save();
            storageLocationDialog = repoDialog.VerifyStorageDialogDisappearance();
            var repoModel = repoDialog.Create();

            repoDialog = repoPage.VerifyRepoDialogDisappearance();

            //get reporow, check elements agains repomodel
        }
 public void StorageLocationDialogSetUpMethod()
 {
     repoDialog            = repoPage.ClickAddNewRepoBtn();
     storageLocationDialog = repoDialog.ClickAddNewStorageLocationBtn();
 }
 public void RepoDialogSetUpMethod()
 {
     repoDialog = repoPage.ClickAddNewRepoBtn();
 }