Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
kanuri
Posts : 6
Join date : 2012-09-28
Age : 35
Location : Hyderabad

Tests are not executing in correct order. Empty Tests are not executing in correct order.

Sat Oct 27, 2012 1:28 pm
Hi to all,

I am raghuram. I am new to selenium webdriver.
I wrote some tests, while executing the tests, test are not executing in correct order.

I wrote the tests
@test -1
@test -2
@test -3
@test -4

When executing this
it is executing like this
2
3
4
1

Any one tell me the reason behind this.


Tests are not executing in correct order. C:%5CDocuments%20and%20Settings%5Craghuram.kanuri%5CDesktop%5CAMP%5CIssue
avatar
rohit kumar gupta
Active particpant
Active particpant
Posts : 24
Join date : 2012-09-19
Age : 34
Location : abc

Tests are not executing in correct order. Empty Re: Tests are not executing in correct order.

Sun Oct 28, 2012 4:53 pm
Reason:- It generally executes based on names of your methods in alphabetical order.

Solution:-Use

@Test(dependsOnMethods={"method name1"})

public void demo1(){}

demo1() would be executed only after method name1

@Test(dependsOnMethods={"method name1","method name 2"})

public void demo(){}

this means that demo would execute only after method name 1 and method name 2 are executed.....

Hope this helps...Smile
avatar
kanuri
Posts : 6
Join date : 2012-09-28
Age : 35
Location : Hyderabad

Tests are not executing in correct order. Empty Re: Tests are not executing in correct order.

Mon Oct 29, 2012 12:47 pm
Hi,

I wrote code as @Test (dependsOnMethods={"LoginSalesForce"}),

but here i got an error as,
"The attribute dependsOnMethods is undefined for the annotation type Test"
For this what should i do..
Here i am using junit framework...
please tell me..

Thanx in advance..

Regards,
Ram
Sponsored content

Tests are not executing in correct order. Empty Re: Tests are not executing in correct order.

Back to top
Permissions in this forum:
You cannot reply to topics in this forum