Thanks! Please watch to other video tutorials as well. kzbin.info_SoftwareTesting_Videos
@youtubevideos53637 жыл бұрын
Even i also faced same questions in interview. Nice explaination.
@testerstalk7 жыл бұрын
Thanks! Please visit other videos in the channel. kzbin.info_SoftwareTesting_Videos
@bishakha086 жыл бұрын
Very nicely explained!!! Thanks a ton :)
@testerstalk6 жыл бұрын
Thanks Bishakha for visiting this selenium video. I suggest you to go through with videos in the channel. kzbin.info_SoftwareTesting_Videos
@shakeelahammadmadabhavi53137 жыл бұрын
very well explained thanks...
@testerstalk7 жыл бұрын
You are always welcome. Please watch to other video tutorials as well. kzbin.info_SoftwareTesting_Videos
@neelamchakraborty90627 жыл бұрын
well explained. Thanks Sir
@testerstalk7 жыл бұрын
Hi Neelam,Thanks for visiting this video Please SUBSCRIBE and visit to other videos as well in the channel. kzbin.info_SoftwareTesting_Videos?sub_confirmation=1
@laxmideepika7 жыл бұрын
Very well explained
@testerstalk7 жыл бұрын
Thanks for visiting to this video. Please visit to other videos as well kzbin.info/door/utQjK5N6zIT-vXqXa4WI0A
@archanashetty29102 жыл бұрын
Hi Can you do the video for input taking from xml..example ...inspect I'd is given in xml ... Thank you
@prasadparadkar87502 жыл бұрын
Hello sir can you help me with dynamic tables ? I tried my best to get count of rows and coulmns from table but there are some rows in table which are hidden that too are getting counted in it. On other hand i've to fetch some values from particular columns using conditions.
@sireeshach65355 жыл бұрын
How to get the perticular column data,when the table is created with div instead of TD and tr
@testerstalk5 жыл бұрын
Hi Sireesha, write xpath for finding column then increase row count.
@sireeshach65355 жыл бұрын
It's a dynamic table.iam able to find only the count of records that r able to fit the page..to find whole count I need scroll.can I apply like scrolling the page Nd increasing the count
@srinivasulu906 жыл бұрын
How do I iterate a dynamic table on a webpage using Python and Selenium? When I iterate the loop it only clicks the first row and it doesn’t go to the second row.
@testerstalk6 жыл бұрын
Thanks for visiting this selenium tutorial. You can first find out total number of rows and then columns. Then iterate it.
@gauravgoyal16467 жыл бұрын
well explained but pls increase font size
@testerstalk7 жыл бұрын
Hi Gaurav, Yes you are right...but please visit to latest videos and TestNG videos.i increased font size. Please keep on visiting my KZbin videos.Thanks in advance
@gauravgoyal16467 жыл бұрын
thanks sir ...for your valuable reply
@madhaviyedla70827 жыл бұрын
It is completely hardcoded. Can you please share code where rows and columns values aren't hardcoded!
@testerstalk7 жыл бұрын
Hello Madhavi, For getting particular row and column value you have to specify row and column value If you have any suggestions,welcome
@testerstalk7 жыл бұрын
The better way is get the particular values then compare it in if condition,if it is equal then get the value
@madhaviyedla70827 жыл бұрын
Thanks a lot. I tried the below and it worked for me: public void printTable() { int numberofCells =0; int numberofRows = driver.findElements(By.xpath("//table[@id='customer']/tbody/tr")).size(); System.out.println(numberofRows); for(int i=1;i