cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Help us improve the PTC Community by taking this short Community Survey! X

Windchill Selenium

ngothankar
1-Newbie

Windchill Selenium

Hi,

I am trying to create automated testing system for the Windchill using selenium.

I am facing an issue, when I click on new part icon sometimes it pops up 2 window instead of 1 and some time it pops up Windchill Login dialog along with pop up.

What could be the issue?

This behavior is random.

Thanks

Nikhil

1 REPLY 1

I use TestNG + Selenium + custom library of API Windchill

WindchillWTObject part = site.findWTObjectByFilter(WindchillWCTYPE.WTPart, "number eq 'RT05.00.02'");
		
WindchillWizard pnWizard = part
  .navigateToInfoPage()
    .clickActionsMenu()
      .clickSubMenuByModelName("more parts toolbar actions new")
        .openWizardByAction("promotionRequest", "create")
          .setSize(1300, 900);
Top Tags