Используя селен, вы можете взаимодействовать с браузером с помощью веб-драйвера.
Я не уверен, что вы имеете в виду.
Вы имеете в виду: когда происходит действие, вызванное кодом?
Если это так, решение довольно простое:
from selenium import webdriver
driver = webdriver.Firefox() # or Chrome or whatever
def redirect(url, *args, **kwargs):
print("Calling click funtion")
driver.click(*args, **kwargs)
print("Redirecting browser")
webdriver.get(url)
# Eventually do something else.
# Instead of calling driver.click() call this function
driver.event_and_redirect = redirect
Или вы имеете в виду: когда действие, вызванное пользователем в этом браузере, происходит?
Если это так, вы можете управлять этим тремя способами:
from selenium import webdriver
import time
driver = webdriver.Chrome()
your_url = 'https://www.domain.example'
previous_url = ''
while True:
url = driver.current_url
if url != previous_url:
print(f'Request detected. Redirecting to {your_url}')
driver.get(your_url)
from browsermobproxy import Server
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
from haralyzer import HarParser
import time
server = Server(your_server_path)
server.start()
proxy = server.create_proxy()
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument(f'--proxy-server={proxy.proxy}')
driver = webdriver.Chrome(chrome_options=chrome_options)
# Listend for new requests.
while True:
proxy.new_har(self._get_current_time(), options=options)
time.sleep(0.1)
entries = HarParser(self.proxy.har).har_data['entries']
if entries != prev_entries:
print("Requests detected")
# **You may easily save and modify the har file.**
# Scrape the main url in the har.
previous_url = entries[0]['request']['url']
driver.get(another_url)
prev_entries = entries
import win32api
from selenium import webdriver
import time
driver = webdriver.Chrome()
your_url = '' # Url for redirect
width = win32api.GetSystemMetrics(0)
height = win32api.GetSystemMetrics(1)
midWidth = int((width + 1) / 2)
midHeight = int((height + 1) / 2)
state_left = win32api.GetKeyState(0x01) # Left button down = 0 or 1. Button up = -127 or -128
while True:
a = win32api.GetKeyState(0x01)
if a != state_left: # Button state changed
state_left = a
print(a)
if a < 0:
print('Left Button Pressed. Redirecting browser')
driver.get(your_url)
else:
# Left button release
pass
win32api.SetCursorPos((midWidth, midHeight))
time.sleep(0.001)
Надеюсь, это поможет вам. Скажите мне, если я неправильно понял, или вам нужны разъяснения.