I want to copy the whole page. No, not just text, but the whole page like we do with ctrl + a
or select the whole page by dragging the mouse whole over the page where image with css also get's copied sometimes and I want that only! (for a quick demo: Just press ctrl + a
on this page/any other site and paste it on Gmail or word doc. you'll see css with image also gets copied)
Achieving that with selenium isn't possible cuz it needs an element to interact with, where e.send_keys(Keys.CONTROL, 'a')
or something like that doesn't work...
Is it possible using selenium? or do we need some other library to perform this task?
I want to do all that behind the scenes, i.e I don't want my chrome to open up. It should perform the task and it should be hidden...
Also note: Language is not an issue. Any language will be ok to perform this task.