iamtech Posted March 24, 2018 Posted March 24, 2018 Its Possible call javascript function and print webpage or save as pdf? My IE wbpage javascript code is : <script> function myFunction() { //var divnav = document.getElementById("divnav"); var headstr = "<html><head><title>Bill Print eFPS</title></head><body>"; var footstr = "</body></html>"; var divprint = document.getElementById("divprint").innerHTML; var oldstr = document.body.innerHTML; document.body.innerHTML = headstr + divprint + footstr; window.print(); document.body.innerHTML = oldstr; return false; } </script>
Danp2 Posted March 24, 2018 Posted March 24, 2018 Search the forum for execScript and review some of the suggestions. Latest Webdriver UDF Release Webdriver Wiki FAQs
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now