我在 Python 中使用 Selenium。这是我正在使用的几行代码:driver = webdriver.Chrome()driver.implicitly_wait(10)driver.get("https://stackoverflow.com")questions = driver.find_elements_by_xpath("//div[@class='question-summary narrow']")for question in questions: # Do some processing here...现在,在处理过程中,我不断收到此消息“Qt:检测到未经测试的 Windows 10.0 版!” ,即使我没有在我的程序中使用Qt或Qmake(当然,我使用的是 Windows 10 操作系统)。虽然这只是一条警告信息,但很烦人(至少对我的主管而言)。我想知道是否有办法摆脱这种情况。
添加回答
举报
0/150
提交
取消