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()
某种程度上,动作链不起作用。 请帮忙。