Hi All
Below are two questions any leads would be appreciate:
1)
I want to reduce time while executing the program in Chrome/Mozilla browser. In below snapshot you can see time taken by 1st case(facebook Test Cases is 40.823sec), is there any criteria to reduce this execution time?
I implement Implicitlywait and Pageloadtimeout as well and both are of 30 sec, while reducing these waits we can reduce execution time or is there any other way to reduce this execution time? no Thread.sleep() I used in my code.
Below two statements i used in my code:
// driver.manage().timeouts().pageLoadTimeout(30 , TimeUnit.SECONDS);
// driver.manage().timeouts().implicitlyWait(30 , TimeUnit.SECONDS);
2) if there is a list of multiple webElements for example 500 elements and if i need to go to direct 100th element what is a easiest/ convenient way? Apart from Xpath.
Please share answers asap.