I am trying to delete a user from a table. At first I was getting a timeout error but used the BeatnicClick() as described here:
http://stackoverflow.com/questions/1391718/selenium-ide-click-timeout
That solved the timeout error but I'm still getting the unexpected confirmation error. Here's part of the source code:
selenium.Click("ctl00_btnAddressBook"); selenium.WaitForPageToLoad("30000");
// selenium.BeatnicClick("ctl00_page_content_ExistingEmployees_ctl03_btnDeleteEmployee");
String Are you sure you want to delete the selected item? = selenium.GetConfirmation();
Any help would be appreciated. Thanks in advance.