import time
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
def get_link():
chrome_options = Options()
chrome_options.add_experimental_option("detach", True)
caps = DesiredCapabilities.CHROME
caps['loggingPrefs'] = {'browser': 'ALL'}
url_main = r'https://www.channelnewsasia.com/news/video-on-demand/japanhour'
path = r'C:\Users\User\Downloads\Internet download\chromedriver_win32\chromedriver.exe'
driver = webdriver.Chrome(path, chrome_options=chrome_options,desired_capabilities=caps)
driver.get(url_main)
time.sleep(10)
link = driver.find_element_by_class_name('video__custom-duration')
link.click()
while True:
for entry in driver.get_log('browser'):
print(entry)
如果您使用vpn访问原始url,下面是我试图自动查找的链接https://mediacorpvideosaz.akamaized.net/c642f1d9-bfcd-46fe-8304-b4bf5c236d1e/bsy3hkaje6j_wuuyqp4m6hatpdd8cwlf.ism/qualitylevels(1984000)/manifest(format=m3u8-aapl)
我想要得到显示在开发人员工具的网络面板上的输出。
问题内容: 当用户禁用JavaScript时,我正在尝试调试网站的功能。我想知道如何禁用Google Chrome DevTools中页面的JavaScript? 问题答案: 单击“ 开发人员工具”角落的菜单,单击“设置”,然后在下进行检查。
我试图在用户禁用其JavaScript时调试网站的功能。我想知道如何从Google Chrome DevTools中禁用JavaScript页面?
Chrome 开发者工具是一套内置在Google Chrome中Web开发和调试工具。使用开发者工具来重演,调试和剖析您的网站。
我想要这个能力的原因是因为我正在处理一个web应用程序,它有一个我想要修改的下拉菜单;我不确定这个下拉菜单在代码库的哪个位置,所以我想暂停执行并检查它。每当我点击任何一个开发工具选项来暂停执行时,它就会关闭下拉菜单。 一个潜在的解决方案是简单地在下拉菜单所在的代码中放置一个调试器,但这是一个鸡和蛋的问题,因为暂停执行的全部意义在于找到该下拉菜单所在的代码库。
这是我正在使用的,用户代理可以成功设置,而下载首选项不能。 Windows 7、Chrome 26、Selenium-dotnet-2.31。2,chromedriver_win_26.0。1383 取自chromedriver。日志: 检查temp首选项文件在,没有设置和。