質問編集履歴

2

タグを追加しました

2023/01/29 12:17

投稿

sutekinamori
sutekinamori

スコア11

test CHANGED
File without changes
test CHANGED
File without changes

1

pyqt5で試したことを更新しました

2023/01/29 12:15

投稿

sutekinamori
sutekinamori

スコア11

test CHANGED
File without changes
test CHANGED
@@ -17,5 +17,34 @@
17
17
 
18
18
  pywebviewやwebviewなどを使ってみたのですが思うように出来ませんでした。
19
19
 
20
+ pyqt5でオープンボタンを表示させて、クリックするとウインドウ内にブラウザを開くことが出来ました。
21
+ ただseleniumで開かれるブラウザを表示させる方法がわかりません。。
22
+
23
+ ```
24
+ from PyQt5.QtCore import QUrl
25
+ import sys
26
+ from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QPushButton
27
+ from PyQt5.QtWebEngineWidgets import QWebEngineView
28
+
29
+ class MainWindow(QWidget):
30
+ def __init__(self):
31
+ super().__init__()
32
+ self.layout = QVBoxLayout()
33
+ self.button = QPushButton("Open")
34
+ self.browser = QWebEngineView()
35
+ self.button.clicked.connect(self.open_browser)
36
+ self.layout.addWidget(self.button)
37
+ self.setLayout(self.layout)
38
+
39
+ def open_browser(self):
40
+ self.browser.load(QUrl("https://www.google.com"))
41
+ self.layout.addWidget(self.browser)
42
+
43
+ app = QApplication(sys.argv)
44
+ window = MainWindow()
45
+ window.show()
46
+ sys.exit(app.exec_())
47
+ ```
20
48
 
21
49
 
50
+