我正在尝试选择pine脚本的文本区域中的所有文本。松果体图像
因此,我尝试了:
driver.find_element_by_xpath("//textarea[@class='ace_text-input']").send_keys(keys.CONTROL + "a")
以上是唯一相关的代码,我的python代码将打开chrome转到https://in.tradingview.com/chart/等待2分钟,然后点击Pine Editor,然后点击
driver.find_element_by_xpath("//textarea[@class='ace_text-input']").send_keys(keys.CONTROL + "a")
但是,它没有被选中,也没有显示错误。
尝试使用ActionChains
webdriver.ActionChains(driver).key_down(Keys.CONTROL).send_keys("a").perform()