1
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.keys import Keys

chrome_path = r"C:\Users\shantam\Desktop\chromedriver.exe"
driver= webdriver.Chrome(chrome_path)    
driver.get('https://careers.jpmorgan.com/careers/apply-experienced')#open the webpage
ActionChains(driver).send_keys(Keys.CONTROL + "p").perform()

somehow the actionchain is not working. please help.

Shantam Mittal
  • 383
  • 4
  • 8

0 Answers0