--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To post to this group, send email to seleniu...@googlegroups.com.
To unsubscribe from this group, send email to selenium-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/selenium-users?hl=en.
Don’t mix JMeter and Selenium. They have different objectives and trying to merge them together will end in pain/un targeted and potentially unmaintainable test scripts.
It may seem like a quick win at first, but in the long run you are just setting yourself up for some serious pain.
From: seleniu...@googlegroups.com [mailto:seleniu...@googlegroups.com] On Behalf Of aakash attrey
Sent: 14 June 2012 07:42
To: seleniu...@googlegroups.com
Subject: [selenium-users] Re: Run batch file or any .exe application using Webdriver apis?
Hi,
I want to launch j-meter scripts that can be launched by a batch file.My concerns is to how do i launch that particular batch file in my test run in selenium?Is that even possilble?
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/selenium-users/-/82aoRydV9h4J.
To post to this group, send email to seleniu...@googlegroups.com.
To unsubscribe from this group, send email to selenium-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/selenium-users?hl=en-US.
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To post to this group, send email to seleniu...@googlegroups.com.
To unsubscribe from this group, send email to selenium-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/selenium-users?hl=en-US.
JMeter tests should be testing load, and not functionality.
A functional Selenium test where you log into a site and then interact with some client side JavaScript and check that things look right on the screen is completely incompatible with a load test IMHO.
· With a Selenium test you are testing the website to ensure that it functions correctly when a user interacts with it.
· With a JMeter test you are hammering the webserver to see what sort of traffic it can deal with/at what point it falls over, checking that a menu drops down when you mouse pointer hovers over it is a pointless exercise.
There will be some tests that could meet both requirement above, but in my experience a one size fits all solution usually results in a watered down test that is neither functional nor load and is rarely fit for purpose.
I have seen attempts to use Selenium to play through scenarios that you record with the JMeter proxy, but generally speaking you then need to go through the recorded JMeter test to strip out the chaff and put in extra functionality anyway. The time saved by recording an automated Selenium test with the JMeter proxy is negligible at best.