我在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 或 Qmake,我仍会收到此消息“ Qt:检测到未经测试的Windows 10.0版!” (当然,我使用的是Windows 10 OS)。尽管这只是警告消息,但令人讨厌(至少对我的主管而言)。我想知道是否有办法摆脱这种情况。