I have a webpage(HTML 5) in which there are 4 charts, each of which taking different time to load once the static content in the page comes up. The Loading is shown in the webpage using a 'rendering' circle image for all the 4 charts. I want to find out how much time each of the charts were showing the 'rendering' circle. Please help me in getting a solution using selenium webdriver.
Finding out loading time of webelements in a webpage using selenium webdriver
228 Views Asked by user2885295 At
1
There are 1 best solutions below
Related Questions in HTML
- How to store a date/time in sqlite (or something similar to a date)
- How to use custom font during html to pdf conversion?
- Storing the preferred font-size in localStorage
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- Is there any way to glow this bulb image like a real light bulb
- With non-graphical maps in Leaflet, zoomDelta doesn't work
- What can I do to improve my coding on both html and css
- Uncaught TypeError: google.maps.LatLng is not a constructor at init (script.js:7:13)
- Bootstrap modal not showing at the desired position on a web page when the screen size is smaller
- Displaying a Movie List on a Website Using Jinja2 and Bootstrap
- How to redirect to thank you page after submitting a Google form embedded into a Google Site?
- Storing selected language in localStorage
- Fences (parenthesis, braces) in HTML and MathML
- Understanding Scroll Anchoring Behavoir
Related Questions in SELENIUM-WEBDRIVER
- Selenium Python - The element I'm looking for cant be found even though it exists in Yahoo Finance
- I am automating web scraping using python
- Linkedin API for median tenure
- How can I find a button element and click on it?
- Scrolling Instagram Followers Not Working
- Need Help Extracting Redirect URL from a div Element with Specific Class Name in Python Selenium
- Selenium clicked button but still getting error and exiting
- RSpec Capybara throwing Selenium error when trying to click a button with browser confirm
- beautifulsoup library not showing below #document data inside iframe tag in python
- Retreive a javascript variable from selenium (mutationobserver) to python
- C# Error: 'ExtentReports' is a namespace but is used like a type
- How to call Python function in JavaScript environment on Selenium?
- Run automated tests in parallel on desktop and mobile browser
- Optimizing Selenium script for faster execution
- Parse Dynamic Power BI table with selenium
Related Questions in WEBPAGE-RENDERING
- Text background with specific line-height not the same in Chrome and Firefox
- Server side or client side rendering
- CSS performance vs media query placement
- hook_menu not working on a custom module
- Finding out loading time of webelements in a webpage using selenium webdriver
- How to find total DOM processing and page rendering time in chrome
- IE rendering issue on responsive website
- Chrome cancels request on link clicking befoe the page totally loaded. And FF doesn't
- Background color switching to transparent while scrolling in WebKit browsers
- Checkbox not highlighted on hover in Chrome 32
- why this font has such a nice rendering?
- How important it is to measure the page render/load time in web application
- Create some script for printing out several webpages
- Adding aligned image to table cell causes rendering bug in Chrome and Firefox
- Webview rendering website incorrectly
Related Questions in RESPONSE-TIME
- Best way to search a word in large log files (100GB) in Spring Boot?
- Is there a way to check the applied CPS value in Jmeter?
- Controlled Bandwidth Performance testing in Jmeter using CPS value
- How to create cloud watch alarm using x-ray traces response time
- Significant Difference In Response Time for API's
- Document Upload Jmeter script is giving inconsistent response times when running in AWS servers
- Monit Measure Responsetime for http requests wrong status speed failed by responsetime < limit
- API Response Time difference in Azure vs JMeter
- Gatling response time logging
- Morgan middleware reponse time token
- Postman vs PHP cURL response time
- Django prefetch related used inside a serializer method making too many queries. How to use prefetch related to reduce queries in following case?
- Tips on how to reduce the response time of an express API that can take upto 2 minutes
- Normalize Grafana Histogram response time
- Next js app loading very slow in development enviorment
Related Questions in QWEBELEMENT
- Excel VBA: Scroll within a dynamic dropdown list (WebElement) so that options show up
- I cant figure out what type of Element is Google Pay interface
- How do I resolve 'WebElement' missing in a script
- Cypress How can I get the same-named element count
- Why does a list of WebElements with size 0 not throw any exception while locating those WebElements?
- Need to identify the ancestor of the mentioned web element
- Why is webelement not showing up in selenium? Regardless of find method
- How to find webelement when there is no ID in Selenium test script
- Get current value of a webelement in selenium after clicking a button
- Replacing Part of Webelement with string in Selenium
- How to handle automatically generated web element (id)
- trying to choose random row from table with selenium/jquery
- Python variable webelement/list to .txt Selenium
- Python Webelement to .text selenium
- A loop for refreshing page that stop when a button/xpath is clickable
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It is the crude way but it must work.
Create a infinite loop with 1 second wait and in each iteration check if the chart is loaded or not. Once all four charts are loaded or if you have timeout value come out of loop. In this case there is possibility of error of 1 sec. If your chart is loading fast or want to reduce the margin of error reduce the wait from 1 sec to 100msec.
Pseudo code :[May use this to write better code]