I am using the selenium tool for my web application testing
I recorded some script and agian i played same but while
playing:
Alert msg is not getting closed
It needs the manual interaction
[Note:Here alert is generated not at the time of onload
event]


Please provide some solution for this

Answers were Sorted based on User's Feedback



I am using the selenium tool for my web application testing I recorded some script and agian i play..

Answer / muppalla_kishore

selenium.windowsfocus();
selenium.click("Button name");

by the above RC script you can handle the alert messages.

As per my idea we dont have option to handle the alert popup
in IDE.

Thanks:
MU.KI.BA

Is This Answer Correct ?    0 Yes 0 No

I am using the selenium tool for my web application testing I recorded some script and agian i play..

Answer / lp

Here you need to go viewalert in alert pop-up window and
install the certificate.Then next time it will not ask for
alert.

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Automation Testing AllOther Interview Questions

What all things can you automate?

1 Answers  


1. How would you Test & then automate an antivirus application? 2. How would u test & automate windows screen saver? (expected: "test scenarios" & "test approch": points)

1 Answers   Aditi Tech,


Is automation testing a complete replacement for manual software testing?

1 Answers  


How do you identify the test cases which are suitable for automation?

1 Answers  


Tell us how could you explain the main difference between webdriver and rc?

1 Answers  


Write a short compiled module which selects random numbers?

1 Answers  


what is the importance of action in QTP & When it need to use it ? I m getting it please expian it me with proper example.

0 Answers  


Hi, Below is the code that i ran on selenium RC using eclipse IDE and java coding.: package source; import org.testng.annotations.BeforeSuite; import org.testng.annotations.Test; import com.thoughtworks.selenium.*; public class parameterized extends SeleneseTestCase { private Selenium browser; public static void main(String []args) { String arr[] = new String[5]; arr[0]= "bert"; arr[1]= "regular"; arr[2]= "copyonly"; arr[3]= "doert"; arr[4]= "inter"; parameterized obj = new parameterized(); obj.setUp(); obj.login_parameterize(arr); } @BeforeSuite public void setUp() { browser = new DefaultSelenium("localhost",4444, "*chrome", "http://goolge.com"); browser.start(); browser.open("http://goolge.com"); browser.waitForPageToLoad("30000"); browser.windowMaximize(); browser.open("/"); browser.click("gb_23"); } @Test public void login_parameterize(String[] arr ) { for(int i=0;i<=5;i++) { for(int j=0;j<=2; j++) { browser.type("//input[@id='Email']", arr[i]); browser.type("//input[@id='Passwd']", arr[i]); browser.click("//input[@id='signIn']"); browser.waitForPageToLoad("30000"); } } } public void EnterValuesIntoTextField_CheckWithGetValue() throws Exception { selenium.open("http://www.essaywriter.co.uk"); assertEquals("", selenium.getValue("id=textInput")); selenium.type("id=textInput", "Text In The Field"); assertEquals("Text In The Field", selenium.getValue("id=textInput")); } } When i ran this test i got an error which says: "Method login_parameterize requires 1 parameters but 0 were supplied in the @Test annotation." Any help is much appreciated. thank Gab

1 Answers  


Which package can be imported while working with webdriver?

1 Answers  


can you ple give me Quality Center interview questions and answer

5 Answers  


What is use of writing Test cases

2 Answers   Ordain Solutions,


What are pros and cons of automating tests at ui layer?

1 Answers  


Categories