Python Forum
unable to load file using python selenium
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
unable to load file using python selenium
#3
Hi hashivaraj,

I tried what u have mentioned and as per my understanding it is working fine. Please correct me if I am wrong .

from selenium import webdriver
from selenium.webdriver.common.keys import Keys

#Getting local session of Chrome
driver=webdriver.Chrome()

#put here the adress of your page
driver.get("https://files.fm/")
#put here the content you have put in Notepad, ie the XPath


	
#elem=driver.find_elements_by_xpath( '//*[@id="tsf"]/div[2]/div[3]/center/input[1]')############### this is one of name 
#elem.send_keys("google search through python")

'''for e in elem:
    e.send_keys("google search through python")'''
#elem2=driver.find_element_by_id('file_upload').send_keys("C:\\Users\\pubhatia\\Documents\\learning\\python\\call_url.py")
#print(elem2)


elem2=driver.find_element_by_id('file_upload')
print(elem2)
elem2.send_keys("C:\\Users\\pubhatia\\Documents\\learning\\python\\call_url.py")
driver.close()


      
Output:
DevTools listening on ws://127.0.0.1:12834/devtools/browser/3cfbab60-fd17-4582-979f-5cc172054f54 <selenium.webdriver.remote.webelement.WebElement (session="498744c3b6f8c6219d4f6c85c11e66e2", element="0.4471727654327058-1")>
Reply


Messages In This Thread
RE: unable to load file using python selenium - by purnima1 - Dec-07-2017, 04:37 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Selenium Parsing (unable to Parse page after loading) oneclick 7 6,192 Oct-30-2020, 08:13 PM
Last Post: tomalex
  Webcrawler with Selenium and Browsermob, Har file not complete Smartkoncept 0 1,391 Jul-23-2020, 08:06 AM
Last Post: Smartkoncept
  Selenium cant get xpaths/load url draw134 2 1,975 Mar-30-2020, 11:24 AM
Last Post: draw134
  Scrapping javascript website with Selenium where pages randomly fail to load JuanJuan 14 7,514 Dec-27-2019, 12:32 PM
Last Post: JuanJuan
  Unable to access javaScript generated data with selenium and headless FireFox. pjn4 0 2,619 Aug-04-2019, 11:10 AM
Last Post: pjn4
  Unable to gather data using beautifulscoup() [Output shows blank file] rishab123s 1 3,197 Apr-13-2018, 04:35 PM
Last Post: snippsat
  file upload from windows10 machine using send_key in selenium fails nithya_g 3 4,724 Jan-12-2018, 09:32 PM
Last Post: metulburr
  Unable to select iframe using selenium endejoli 1 3,106 Jan-11-2018, 05:13 PM
Last Post: j.crater
  Unable to load cookies with Pickle HiImNew 5 12,018 Jan-04-2018, 12:36 PM
Last Post: snippsat
  Error in Selenium: CRITICAL:root:Selenium module is not installed...Exiting program. AcszE 1 3,726 Nov-03-2017, 08:41 PM
Last Post: metulburr

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020