The code below was intended to get the titles of the video courses. Well it finds it, but I am unable to write the output to a text file.
from selenium import webdriver
f=("output.txt", "a")
browsing_1 = webdriver.Firefox(executable_path="C:\\Tester\\geckodriver.exe")
browsing_1.get("https://channel9.msdn.com/Niners/JeffKoch/Posts?page=170")
testing_texts = browsing_1.find_elements_by_xpath("//div[@class='seriesTitle']")
for namess in testing_texts:
print(namess.text)
When I use this f.write(names) it gives out the below:
Traceback (most recent call last):
File "C:\Tester\trial83.py", line 11, in <module>
f.write(names)
AttributeError: 'tuple' object has no attribute 'write'
Is there anyway that I can append the file and have the below output in it please?
Link:"https://channel9.msdn.com/Niners/JeffKoch/Posts?page=170"
System Center 2012 R2 Infrastructure Provisioning and Management
Core Solutions of Exchange Server 2013
Core Solutions of Exchange Server 2013
Core Solutions of Exchange Server 2013
Core Solutions of Exchange Server 2013
Core Solutions of Exchange Server 2013
Core Solutions of Exchange Server 2013
Core Solutions of Exchange Server 2013
Windows Server 2012 R2 Storage
Windows Server 2012 R2 Storage
Windows Server 2012 R2 Storage
Windows Server 2012 R2 Storage
I used a
listto store all the values of the scraped data, and then converted that list to.txtfile.It worked just perfectly. Try this. Hope it's the desired output that you want.