what is the command for identifing the color of the object.
please help me ? my numberis 9916800532
Answer Posted / punj
Set Obj=browser().page().link()
obj.object.currentstyle.color
will give the color
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are pros and cons of automating tests at ui layer?
What is test automation or automation testing?
What is a ‘test plan’? What is a ‘test case’?
Tell us what is the alternate way to click on login button?
what r the diffence between QTP 8.2 & QTP9.0?
Is ui level testing possible?
What type of scenarios can't be automated?
What u mean by infrgistics control (What is infrgistics Controls)?
Currently I do not have any automation in place in my project, but now I want to implement automation, what would be my steps?
In Selenium how a test suit is run and report is generated.
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
What is extreme programming and what has it got to do with testing?
explain add in manager and virtual object wizard in winrunner
What all different approaches can be used for designing an automation solution?
What are the different types of scripting techniques for automation testing?