Can I copy a text on a webpage and paste it in a t

2019-07-31 09:30发布

I have a webpage which dynamically displays a text which I want to copy into a text file using watir-webdriver or any other additional gems. Is it possible?? If yes, how??

Thanks in advance..

2条回答
Melony?
2楼-- · 2019-07-31 10:07

If you are talking about web-scraping try Nokogiri

查看更多
迷人小祖宗
3楼-- · 2019-07-31 10:23

I will assume that you you have HMTL like this:

<div id="tehcodez">teh codez</div>

This would save text teh codez to file tehcodez.txt (not tested):

text = browser.div(:id => "tehcodez").text
File.open("tehcodez.txt", "w") {|file| file.write(text) }
查看更多
登录 后发表回答