0
votes
0answers
27 views

how to extract page load time in a browser in java using selenium webdriver or some other API

I need to extract load time of various elements embedded in a page such as image, javascript and others along with that of the page itself using selenium webdriver or other API (if any) in java. Is ...
0
votes
3answers
70 views

How to set the checkbox in the first column based on the value in the second column of a table?

I'm automating a task using Java and Selenium. I want to set a checkbox (which is in the first column of a table) based on whether the value in the second column matches my input value. For example, ...
1
vote
0answers
42 views

How to programatically invoke the functions available on browser Add-on

One of client requires a add-on to be installed for a browser and perform all the available functions of that add-on from the add-on bar. The add-on has been coded in Javascript and there are many ...
0
votes
0answers
43 views

generating java classes during build time to create test automation libraries for a java based web application

i just started working on web applications, with no prior experience or knowledge. Currently i am into test automation for a java based web application(OUAF). This application has got menus and lot ...
-1
votes
3answers
460 views

How to write my own customize locator for Selenium webdriver in java?

I want to write my own locator to access the elements. WebDriver’s API offers currently eight locators allowing to retrieve elements by id, name attribute, tag name, complete or partial link text, ...
0
votes
2answers
698 views

how to peform “Save As” on IE (Internet Explorer) automatically?

I want to open a webpage (whose URL is given as the commandline argument) and then want to save the content of that webpage as a .txt file. Remember, I need the .txt file and not the source of the ...
0
votes
3answers
583 views

how to click on a button through java?

I want to access forms on HTMl pages throught Java Programming Language without involving real browser in between. At present I am doing it through HTML UNIT but it takes a bit more time to load a ...