Mouse Over Dom can be used to analyze element in a web page.
This would be useful for the applications which are to be automated but do not
support Firefox Browser (Hence Selenium IDE or Firebug can not be used to
analyze elements). Browser which are currently supported are -
Firefox, Mozilla, Netscape 8, Opera 7.5+ and MSIE6+
http://slayeroffice.com/tools/modi/v2.0/modi_help.html
I asked on my previous post about what was wrong in instantiating driver on set up method? And here is the solution video on my YouTube channel (After 5 years of gap I finally added new video tutorial :)) The solution described on video tutorial uses following set up - public class BaseClassOnDemandDriverSetup { private WebDriver driver ; @BeforeMethod public void setupTest () { // Any other set up goes here } @AfterMethod public void teardown () { if ( driver != null ) { driver .quit() ; } } public WebDriver getDriver () { if ( driver == null ) { WebDriverManager. chromedriver ().setup() ; driver = new ChromeDriver() ; } return driver ; } }
Hi Tarun, you will probably be interested in http://getfirebug.com/lite.html
ReplyDeleteEven though it's not as fast and complete the real version of firebug, it's a great tool for "IE only" applications...