关于pycharm和selenium
使用qq浏览器的selenium插件录制脚本正确,在文件导出py文件,用pycharm运行,为什么没有自己打开网页呢?在用pycharm运行时没有报错,是需要添加打开网页的代码吗? class TestBd():def test_bd(self):
self.driver=webdriver.chrome('./chromedriver')
self.driver.get("https://www")
print(self.driver.title)
这个应该是调用打开网页代码 可是也是不能打开 driver = webdriver.chrome()
driver.get("https://www.baidu.com/") zhang2924737 发表于 2019-9-11 16:27
driver = webdriver.chrome()
driver.get("https://www.baidu.com/")
我有这个语句 但是还是不能调用浏览器 ,是因为seleniumIDE录制的脚本,在python上就是不会弹出录制的操作网页吗?
页:
[1]