Configurable "Browser Steps" when Playwright/Chrome is configured (enter text, scroll, wait for text, click button etc) (#478)
parent
c98536ace4
commit
5b530ff61c
@ -0,0 +1,226 @@
|
|||||||
|
|
||||||
|
# HORRIBLE HACK BUT WORKS :-) PR anyone?
|
||||||
|
#
|
||||||
|
# Why?
|
||||||
|
# `browsersteps_playwright_browser_interface.chromium.connect_over_cdp()` will only run once without async()
|
||||||
|
# - this flask app is not async()
|
||||||
|
# - browserless has a single timeout/keepalive which applies to the session made at .connect_over_cdp()
|
||||||
|
#
|
||||||
|
# So it means that we must unfortunately for now just keep a single timer since .connect_over_cdp() was run
|
||||||
|
# and know when that reaches timeout/keepalive :( when that time is up, restart the connection and tell the user
|
||||||
|
# that their time is up, insert another coin. (reload)
|
||||||
|
#
|
||||||
|
# Bigger picture
|
||||||
|
# - It's horrible that we have this click+wait deal, some nice socket.io solution using something similar
|
||||||
|
# to what the browserless debug UI already gives us would be smarter..
|
||||||
|
#
|
||||||
|
# OR
|
||||||
|
# - Some API call that should be hacked into browserless or playwright that we can "/api/bump-keepalive/{session_id}/60"
|
||||||
|
# So we can tell it that we need more time (run this on each action)
|
||||||
|
#
|
||||||
|
# OR
|
||||||
|
# - use multiprocessing to bump this over to its own process and add some transport layer (queue/pipes)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
from distutils.util import strtobool
|
||||||
|
from flask import Blueprint, request, make_response
|
||||||
|
from flask_login import login_required
|
||||||
|
import os
|
||||||
|
import logging
|
||||||
|
from changedetectionio.store import ChangeDetectionStore
|
||||||
|
|
||||||
|
browsersteps_live_ui_o = {}
|
||||||
|
browsersteps_playwright_browser_interface = None
|
||||||
|
browsersteps_playwright_browser_interface_start_time = None
|
||||||
|
browsersteps_playwright_browser_interface_browser = None
|
||||||
|
browsersteps_playwright_browser_interface_end_time = None
|
||||||
|
|
||||||
|
|
||||||
|
def cleanup_playwright_session():
|
||||||
|
print("Cleaning up old playwright session because time was up")
|
||||||
|
global browsersteps_playwright_browser_interface
|
||||||
|
global browsersteps_live_ui_o
|
||||||
|
global browsersteps_playwright_browser_interface_browser
|
||||||
|
global browsersteps_playwright_browser_interface
|
||||||
|
global browsersteps_playwright_browser_interface_start_time
|
||||||
|
global browsersteps_playwright_browser_interface_end_time
|
||||||
|
|
||||||
|
import psutil
|
||||||
|
|
||||||
|
current_process = psutil.Process()
|
||||||
|
children = current_process.children(recursive=True)
|
||||||
|
for child in children:
|
||||||
|
print (child)
|
||||||
|
print('Child pid is {}'.format(child.pid))
|
||||||
|
|
||||||
|
# .stop() hangs sometimes if its called when there are no children to process
|
||||||
|
# but how do we know this is our child? dunno
|
||||||
|
if children:
|
||||||
|
browsersteps_playwright_browser_interface.stop()
|
||||||
|
|
||||||
|
browsersteps_live_ui_o = {}
|
||||||
|
browsersteps_playwright_browser_interface = None
|
||||||
|
browsersteps_playwright_browser_interface_start_time = None
|
||||||
|
browsersteps_playwright_browser_interface_browser = None
|
||||||
|
browsersteps_playwright_browser_interface_end_time = None
|
||||||
|
print ("Cleaning up old playwright session because time was up - done")
|
||||||
|
|
||||||
|
def construct_blueprint(datastore: ChangeDetectionStore):
|
||||||
|
|
||||||
|
browser_steps_blueprint = Blueprint('browser_steps', __name__, template_folder="templates")
|
||||||
|
|
||||||
|
@login_required
|
||||||
|
@browser_steps_blueprint.route("/browsersteps_update", methods=['GET', 'POST'])
|
||||||
|
def browsersteps_ui_update():
|
||||||
|
import base64
|
||||||
|
import playwright._impl._api_types
|
||||||
|
import time
|
||||||
|
|
||||||
|
from changedetectionio.blueprint.browser_steps import browser_steps
|
||||||
|
|
||||||
|
global browsersteps_live_ui_o, browsersteps_playwright_browser_interface_end_time
|
||||||
|
global browsersteps_playwright_browser_interface_browser
|
||||||
|
global browsersteps_playwright_browser_interface
|
||||||
|
global browsersteps_playwright_browser_interface_start_time
|
||||||
|
|
||||||
|
step_n = None
|
||||||
|
remaining =0
|
||||||
|
uuid = request.args.get('uuid')
|
||||||
|
|
||||||
|
browsersteps_session_id = request.args.get('browsersteps_session_id')
|
||||||
|
|
||||||
|
if not browsersteps_session_id:
|
||||||
|
return make_response('No browsersteps_session_id specified', 500)
|
||||||
|
|
||||||
|
# Because we don't "really" run in a context manager ( we make the playwright interface global/long-living )
|
||||||
|
# We need to manage the shutdown when the time is up
|
||||||
|
if browsersteps_playwright_browser_interface_end_time:
|
||||||
|
remaining = browsersteps_playwright_browser_interface_end_time-time.time()
|
||||||
|
if browsersteps_playwright_browser_interface_end_time and remaining <= 0:
|
||||||
|
|
||||||
|
|
||||||
|
cleanup_playwright_session()
|
||||||
|
|
||||||
|
return make_response('Browser session expired, please reload the Browser Steps interface', 500)
|
||||||
|
|
||||||
|
|
||||||
|
# Actions - step/apply/etc, do the thing and return state
|
||||||
|
if request.method == 'POST':
|
||||||
|
# @todo - should always be an existing session
|
||||||
|
step_operation = request.form.get('operation')
|
||||||
|
step_selector = request.form.get('selector')
|
||||||
|
step_optional_value = request.form.get('optional_value')
|
||||||
|
step_n = int(request.form.get('step_n'))
|
||||||
|
is_last_step = strtobool(request.form.get('is_last_step'))
|
||||||
|
|
||||||
|
if step_operation == 'Goto site':
|
||||||
|
step_operation = 'goto_url'
|
||||||
|
step_optional_value = None
|
||||||
|
step_selector = datastore.data['watching'][uuid].get('url')
|
||||||
|
|
||||||
|
# @todo try.. accept.. nice errors not popups..
|
||||||
|
try:
|
||||||
|
|
||||||
|
this_session = browsersteps_live_ui_o.get(browsersteps_session_id)
|
||||||
|
if not this_session:
|
||||||
|
print("Browser exited")
|
||||||
|
return make_response('Browser session ran out of time :( Please reload this page.', 401)
|
||||||
|
|
||||||
|
this_session.call_action(action_name=step_operation,
|
||||||
|
selector=step_selector,
|
||||||
|
optional_value=step_optional_value)
|
||||||
|
except playwright._impl._api_types.TimeoutError as e:
|
||||||
|
print("Element wasnt found :-(", step_operation)
|
||||||
|
return make_response("Element was not found on page", 401)
|
||||||
|
|
||||||
|
except playwright._impl._api_types.Error as e:
|
||||||
|
# Browser/playwright level error
|
||||||
|
print("Browser error - got playwright._impl._api_types.Error, try reloading the session/browser")
|
||||||
|
print (str(e))
|
||||||
|
|
||||||
|
# Try to find something of value to give back to the user
|
||||||
|
for l in str(e).splitlines():
|
||||||
|
if 'DOMException' in l:
|
||||||
|
return make_response(l, 401)
|
||||||
|
|
||||||
|
return make_response('Browser session ran out of time :( Please reload this page.', 401)
|
||||||
|
|
||||||
|
# Get visual selector ready/update its data (also use the current filter info from the page?)
|
||||||
|
# When the last 'apply' button was pressed
|
||||||
|
# @todo this adds overhead because the xpath selection is happening twice
|
||||||
|
u = this_session.page.url
|
||||||
|
if is_last_step and u:
|
||||||
|
(screenshot, xpath_data) = this_session.request_visualselector_data()
|
||||||
|
datastore.save_screenshot(watch_uuid=uuid, screenshot=screenshot)
|
||||||
|
datastore.save_xpath_data(watch_uuid=uuid, data=xpath_data)
|
||||||
|
|
||||||
|
# Setup interface
|
||||||
|
if request.method == 'GET':
|
||||||
|
|
||||||
|
if not browsersteps_playwright_browser_interface:
|
||||||
|
print("Starting connection with playwright")
|
||||||
|
logging.debug("browser_steps.py connecting")
|
||||||
|
from playwright.sync_api import sync_playwright
|
||||||
|
|
||||||
|
browsersteps_playwright_browser_interface = sync_playwright().start()
|
||||||
|
|
||||||
|
|
||||||
|
time.sleep(1)
|
||||||
|
# At 20 minutes, some other variable is closing it
|
||||||
|
# @todo find out what it is and set it
|
||||||
|
seconds_keepalive = int(os.getenv('BROWSERSTEPS_MINUTES_KEEPALIVE', 10)) * 60
|
||||||
|
|
||||||
|
# keep it alive for 10 seconds more than we advertise, sometimes it helps to keep it shutting down cleanly
|
||||||
|
keepalive = "&timeout={}".format(((seconds_keepalive+3) * 1000))
|
||||||
|
try:
|
||||||
|
browsersteps_playwright_browser_interface_browser = browsersteps_playwright_browser_interface.chromium.connect_over_cdp(
|
||||||
|
os.getenv('PLAYWRIGHT_DRIVER_URL', '') + keepalive)
|
||||||
|
except Exception as e:
|
||||||
|
if 'ECONNREFUSED' in str(e):
|
||||||
|
return make_response('Unable to start the Playwright session properly, is it running?', 401)
|
||||||
|
|
||||||
|
browsersteps_playwright_browser_interface_end_time = time.time() + (seconds_keepalive-3)
|
||||||
|
print("Starting connection with playwright - done")
|
||||||
|
|
||||||
|
if not browsersteps_live_ui_o.get(browsersteps_session_id):
|
||||||
|
# Boot up a new session
|
||||||
|
proxy_id = datastore.get_preferred_proxy_for_watch(uuid=uuid)
|
||||||
|
proxy = None
|
||||||
|
if proxy_id:
|
||||||
|
proxy_url = datastore.proxy_list.get(proxy_id).get('url')
|
||||||
|
if proxy_url:
|
||||||
|
proxy = {'server': proxy_url}
|
||||||
|
print("Browser Steps: UUID {} Using proxy {}".format(uuid, proxy_url))
|
||||||
|
|
||||||
|
# Begin the new "Playwright Context" that re-uses the playwright interface
|
||||||
|
# Each session is a "Playwright Context" as a list, that uses the playwright interface
|
||||||
|
browsersteps_live_ui_o[browsersteps_session_id] = browser_steps.browsersteps_live_ui(
|
||||||
|
playwright_browser=browsersteps_playwright_browser_interface_browser,
|
||||||
|
proxy=proxy)
|
||||||
|
this_session = browsersteps_live_ui_o[browsersteps_session_id]
|
||||||
|
|
||||||
|
if not this_session.page:
|
||||||
|
cleanup_playwright_session()
|
||||||
|
return make_response('Browser session ran out of time :( Please reload this page.', 401)
|
||||||
|
|
||||||
|
try:
|
||||||
|
state = this_session.get_current_state()
|
||||||
|
except playwright._impl._api_types.Error as e:
|
||||||
|
return make_response("Browser session ran out of time :( Please reload this page."+str(e), 401)
|
||||||
|
|
||||||
|
p = {'screenshot': "data:image/png;base64,{}".format(
|
||||||
|
base64.b64encode(state[0]).decode('ascii')),
|
||||||
|
'xpath_data': state[1],
|
||||||
|
'session_age_start': this_session.age_start,
|
||||||
|
'browser_time_remaining': round(remaining)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# @todo BSON/binary JSON, faster xfer, OR pick it off the disk
|
||||||
|
return p
|
||||||
|
|
||||||
|
return browser_steps_blueprint
|
||||||
|
|
||||||
|
|
@ -0,0 +1,268 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
import time
|
||||||
|
import re
|
||||||
|
from random import randint
|
||||||
|
|
||||||
|
# Two flags, tell the JS which of the "Selector" or "Value" field should be enabled in the front end
|
||||||
|
# 0- off, 1- on
|
||||||
|
browser_step_ui_config = {'Choose one': '0 0',
|
||||||
|
# 'Check checkbox': '1 0',
|
||||||
|
# 'Click button containing text': '0 1',
|
||||||
|
# 'Scroll to bottom': '0 0',
|
||||||
|
# 'Scroll to element': '1 0',
|
||||||
|
# 'Scroll to top': '0 0',
|
||||||
|
# 'Switch to iFrame by index number': '0 1'
|
||||||
|
# 'Uncheck checkbox': '1 0',
|
||||||
|
# @todo
|
||||||
|
'Check checkbox': '1 0',
|
||||||
|
'Click X,Y': '0 1',
|
||||||
|
'Click element if exists': '1 0',
|
||||||
|
'Click element': '1 0',
|
||||||
|
'Click element containing text': '0 1',
|
||||||
|
'Enter text in field': '1 1',
|
||||||
|
# 'Extract text and use as filter': '1 0',
|
||||||
|
'Goto site': '0 0',
|
||||||
|
'Press Enter': '0 0',
|
||||||
|
'Select by label': '1 1',
|
||||||
|
'Scroll down': '0 0',
|
||||||
|
'Uncheck checkbox': '1 0',
|
||||||
|
'Wait for seconds': '0 1',
|
||||||
|
'Wait for text': '0 1',
|
||||||
|
# 'Press Page Down': '0 0',
|
||||||
|
# 'Press Page Up': '0 0',
|
||||||
|
# weird bug, come back to it later
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Good reference - https://playwright.dev/python/docs/input
|
||||||
|
# https://pythonmana.com/2021/12/202112162236307035.html
|
||||||
|
#
|
||||||
|
# ONLY Works in Playwright because we need the fullscreen screenshot
|
||||||
|
class steppable_browser_interface():
|
||||||
|
page = None
|
||||||
|
|
||||||
|
# Convert and perform "Click Button" for example
|
||||||
|
def call_action(self, action_name, selector=None, optional_value=None):
|
||||||
|
now = time.time()
|
||||||
|
call_action_name = re.sub('[^0-9a-zA-Z]+', '_', action_name.lower())
|
||||||
|
if call_action_name == 'choose_one':
|
||||||
|
return
|
||||||
|
|
||||||
|
print("> action calling", call_action_name)
|
||||||
|
# https://playwright.dev/python/docs/selectors#xpath-selectors
|
||||||
|
if selector.startswith('/') and not selector.startswith('//'):
|
||||||
|
selector = "xpath=" + selector
|
||||||
|
|
||||||
|
action_handler = getattr(self, "action_" + call_action_name)
|
||||||
|
|
||||||
|
# Support for Jinja2 variables in the value and selector
|
||||||
|
from jinja2 import Environment
|
||||||
|
jinja2_env = Environment(extensions=['jinja2_time.TimeExtension'])
|
||||||
|
|
||||||
|
if selector and ('{%' in selector or '{{' in selector):
|
||||||
|
selector = str(jinja2_env.from_string(selector).render())
|
||||||
|
|
||||||
|
if optional_value and ('{%' in optional_value or '{{' in optional_value):
|
||||||
|
optional_value = str(jinja2_env.from_string(optional_value).render())
|
||||||
|
|
||||||
|
action_handler(selector, optional_value)
|
||||||
|
self.page.wait_for_timeout(3 * 1000)
|
||||||
|
print("Call action done in", time.time() - now)
|
||||||
|
|
||||||
|
def action_goto_url(self, url, optional_value):
|
||||||
|
# self.page.set_viewport_size({"width": 1280, "height": 5000})
|
||||||
|
now = time.time()
|
||||||
|
response = self.page.goto(url, timeout=0, wait_until='domcontentloaded')
|
||||||
|
print("Time to goto URL", time.time() - now)
|
||||||
|
|
||||||
|
# Wait_until = commit
|
||||||
|
# - `'commit'` - consider operation to be finished when network response is received and the document started loading.
|
||||||
|
# Better to not use any smarts from Playwright and just wait an arbitrary number of seconds
|
||||||
|
# This seemed to solve nearly all 'TimeoutErrors'
|
||||||
|
extra_wait = int(os.getenv("WEBDRIVER_DELAY_BEFORE_CONTENT_READY", 5))
|
||||||
|
self.page.wait_for_timeout(extra_wait * 1000)
|
||||||
|
|
||||||
|
def action_click_element_containing_text(self, selector=None, value=''):
|
||||||
|
if not len(value.strip()):
|
||||||
|
return
|
||||||
|
elem = self.page.get_by_text(value)
|
||||||
|
if elem.count():
|
||||||
|
elem.first.click(delay=randint(200, 500))
|
||||||
|
|
||||||
|
def action_enter_text_in_field(self, selector, value):
|
||||||
|
if not len(selector.strip()):
|
||||||
|
return
|
||||||
|
|
||||||
|
self.page.fill(selector, value, timeout=10 * 1000)
|
||||||
|
|
||||||
|
def action_click_element(self, selector, value):
|
||||||
|
print("Clicking element")
|
||||||
|
if not len(selector.strip()):
|
||||||
|
return
|
||||||
|
self.page.click(selector, timeout=10 * 1000, delay=randint(200, 500))
|
||||||
|
|
||||||
|
def action_click_element_if_exists(self, selector, value):
|
||||||
|
import playwright._impl._api_types as _api_types
|
||||||
|
print("Clicking element if exists")
|
||||||
|
if not len(selector.strip()):
|
||||||
|
return
|
||||||
|
try:
|
||||||
|
self.page.click(selector, timeout=10 * 1000, delay=randint(200, 500))
|
||||||
|
except _api_types.TimeoutError as e:
|
||||||
|
return
|
||||||
|
except _api_types.Error as e:
|
||||||
|
# Element was there, but page redrew and now its long long gone
|
||||||
|
return
|
||||||
|
|
||||||
|
def action_click_x_y(self, selector, value):
|
||||||
|
x, y = value.strip().split(',')
|
||||||
|
x = int(float(x.strip()))
|
||||||
|
y = int(float(y.strip()))
|
||||||
|
self.page.mouse.click(x=x, y=y, delay=randint(200, 500))
|
||||||
|
|
||||||
|
def action_scroll_down(self, selector, value):
|
||||||
|
# Some sites this doesnt work on for some reason
|
||||||
|
self.page.mouse.wheel(0, 600)
|
||||||
|
self.page.wait_for_timeout(1000)
|
||||||
|
|
||||||
|
def action_wait_for_seconds(self, selector, value):
|
||||||
|
self.page.wait_for_timeout(int(value) * 1000)
|
||||||
|
|
||||||
|
# @todo - in the future make some popout interface to capture what needs to be set
|
||||||
|
# https://playwright.dev/python/docs/api/class-keyboard
|
||||||
|
def action_press_enter(self, selector, value):
|
||||||
|
self.page.keyboard.press("Enter", delay=randint(200, 500))
|
||||||
|
|
||||||
|
def action_press_page_up(self, selector, value):
|
||||||
|
self.page.keyboard.press("PageUp", delay=randint(200, 500))
|
||||||
|
|
||||||
|
def action_press_page_down(self, selector, value):
|
||||||
|
self.page.keyboard.press("PageDown", delay=randint(200, 500))
|
||||||
|
|
||||||
|
def action_check_checkbox(self, selector, value):
|
||||||
|
self.page.locator(selector).check()
|
||||||
|
|
||||||
|
def action_uncheck_checkbox(self, selector, value):
|
||||||
|
self.page.locator(selector).uncheck()
|
||||||
|
|
||||||
|
|
||||||
|
# Responsible for maintaining a live 'context' with browserless
|
||||||
|
# @todo - how long do contexts live for anyway?
|
||||||
|
class browsersteps_live_ui(steppable_browser_interface):
|
||||||
|
context = None
|
||||||
|
page = None
|
||||||
|
render_extra_delay = 1
|
||||||
|
stale = False
|
||||||
|
# bump and kill this if idle after X sec
|
||||||
|
age_start = 0
|
||||||
|
|
||||||
|
# use a special driver, maybe locally etc
|
||||||
|
command_executor = os.getenv(
|
||||||
|
"PLAYWRIGHT_BROWSERSTEPS_DRIVER_URL"
|
||||||
|
)
|
||||||
|
# if not..
|
||||||
|
if not command_executor:
|
||||||
|
command_executor = os.getenv(
|
||||||
|
"PLAYWRIGHT_DRIVER_URL",
|
||||||
|
'ws://playwright-chrome:3000'
|
||||||
|
).strip('"')
|
||||||
|
|
||||||
|
browser_type = os.getenv("PLAYWRIGHT_BROWSER_TYPE", 'chromium').strip('"')
|
||||||
|
|
||||||
|
def __init__(self, playwright_browser, proxy=None):
|
||||||
|
self.age_start = time.time()
|
||||||
|
self.playwright_browser = playwright_browser
|
||||||
|
if self.context is None:
|
||||||
|
self.connect(proxy=proxy)
|
||||||
|
|
||||||
|
# Connect and setup a new context
|
||||||
|
def connect(self, proxy=None):
|
||||||
|
# Should only get called once - test that
|
||||||
|
keep_open = 1000 * 60 * 5
|
||||||
|
now = time.time()
|
||||||
|
|
||||||
|
# @todo handle multiple contexts, bind a unique id from the browser on each req?
|
||||||
|
self.context = self.playwright_browser.new_context(
|
||||||
|
# @todo
|
||||||
|
# user_agent=request_headers['User-Agent'] if request_headers.get('User-Agent') else 'Mozilla/5.0',
|
||||||
|
# proxy=self.proxy,
|
||||||
|
# This is needed to enable JavaScript execution on GitHub and others
|
||||||
|
bypass_csp=True,
|
||||||
|
# Should never be needed
|
||||||
|
accept_downloads=False,
|
||||||
|
proxy=proxy
|
||||||
|
)
|
||||||
|
|
||||||
|
self.page = self.context.new_page()
|
||||||
|
|
||||||
|
# self.page.set_default_navigation_timeout(keep_open)
|
||||||
|
self.page.set_default_timeout(keep_open)
|
||||||
|
# @todo probably this doesnt work
|
||||||
|
self.page.on(
|
||||||
|
"close",
|
||||||
|
self.mark_as_closed,
|
||||||
|
)
|
||||||
|
# Listen for all console events and handle errors
|
||||||
|
self.page.on("console", lambda msg: print(f"Browser steps console - {msg.type}: {msg.text} {msg.args}"))
|
||||||
|
|
||||||
|
print("time to browser setup", time.time() - now)
|
||||||
|
self.page.wait_for_timeout(1 * 1000)
|
||||||
|
|
||||||
|
def mark_as_closed(self):
|
||||||
|
print("Page closed, cleaning up..")
|
||||||
|
|
||||||
|
@property
|
||||||
|
def has_expired(self):
|
||||||
|
if not self.page:
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
def get_current_state(self):
|
||||||
|
"""Return the screenshot and interactive elements mapping, generally always called after action_()"""
|
||||||
|
from pkg_resources import resource_string
|
||||||
|
xpath_element_js = resource_string(__name__, "../../res/xpath_element_scraper.js").decode('utf-8')
|
||||||
|
now = time.time()
|
||||||
|
self.page.wait_for_timeout(1 * 1000)
|
||||||
|
|
||||||
|
# The actual screenshot
|
||||||
|
screenshot = self.page.screenshot(type='jpeg', full_page=True, quality=40)
|
||||||
|
|
||||||
|
self.page.evaluate("var include_filters=''")
|
||||||
|
# Go find the interactive elements
|
||||||
|
# @todo in the future, something smarter that can scan for elements with .click/focus etc event handlers?
|
||||||
|
elements = 'a,button,input,select,textarea,i,th,td,p,li,h1,h2,h3,h4'
|
||||||
|
xpath_element_js = xpath_element_js.replace('%ELEMENTS%', elements)
|
||||||
|
xpath_data = self.page.evaluate("async () => {" + xpath_element_js + "}")
|
||||||
|
# So the JS will find the smallest one first
|
||||||
|
xpath_data['size_pos'] = sorted(xpath_data['size_pos'], key=lambda k: k['width'] * k['height'], reverse=True)
|
||||||
|
print("Time to complete get_current_state of browser", time.time() - now)
|
||||||
|
# except
|
||||||
|
# playwright._impl._api_types.Error: Browser closed.
|
||||||
|
# @todo show some countdown timer?
|
||||||
|
return (screenshot, xpath_data)
|
||||||
|
|
||||||
|
def request_visualselector_data(self):
|
||||||
|
"""
|
||||||
|
Does the same that the playwright operation in content_fetcher does
|
||||||
|
This is used to just bump the VisualSelector data so it' ready to go if they click on the tab
|
||||||
|
@todo refactor and remove duplicate code, add include_filters
|
||||||
|
:param xpath_data:
|
||||||
|
:param screenshot:
|
||||||
|
:param current_include_filters:
|
||||||
|
:return:
|
||||||
|
"""
|
||||||
|
|
||||||
|
self.page.evaluate("var include_filters=''")
|
||||||
|
from pkg_resources import resource_string
|
||||||
|
# The code that scrapes elements and makes a list of elements/size/position to click on in the VisualSelector
|
||||||
|
# @todo dont duplicate these selectors, or just let them both use the same data?
|
||||||
|
xpath_element_js = resource_string(__name__, "../../res/xpath_element_scraper.js").decode('utf-8')
|
||||||
|
xpath_element_js = xpath_element_js.replace('%ELEMENTS%',
|
||||||
|
'div,span,form,table,tbody,tr,td,a,p,ul,li,h1,h2,h3,h4, header, footer, section, article, aside, details, main, nav, section')
|
||||||
|
xpath_data = self.page.evaluate("async () => {" + xpath_element_js + "}")
|
||||||
|
|
||||||
|
screenshot = self.page.screenshot(type='jpeg', full_page=True, quality=int(os.getenv("PLAYWRIGHT_SCREENSHOT_QUALITY", 72)))
|
||||||
|
|
||||||
|
return (screenshot, xpath_data)
|
@ -0,0 +1,425 @@
|
|||||||
|
$(document).ready(function () {
|
||||||
|
|
||||||
|
// duplicate
|
||||||
|
var csrftoken = $('input[name=csrf_token]').val();
|
||||||
|
$.ajaxSetup({
|
||||||
|
beforeSend: function (xhr, settings) {
|
||||||
|
if (!/^(GET|HEAD|OPTIONS|TRACE)$/i.test(settings.type) && !this.crossDomain) {
|
||||||
|
xhr.setRequestHeader("X-CSRFToken", csrftoken)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
var browsersteps_session_id;
|
||||||
|
var browserless_seconds_remaining=0;
|
||||||
|
var apply_buttons_disabled = false;
|
||||||
|
var include_text_elements = $("#include_text_elements");
|
||||||
|
var xpath_data;
|
||||||
|
var current_selected_i;
|
||||||
|
var state_clicked = false;
|
||||||
|
var c;
|
||||||
|
|
||||||
|
// redline highlight context
|
||||||
|
var ctx;
|
||||||
|
var last_click_xy = {'x': -1, 'y': -1}
|
||||||
|
|
||||||
|
$(window).resize(function () {
|
||||||
|
set_scale();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('a#browsersteps-tab').click(function () {
|
||||||
|
start();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Show seconds remaining until playwright/browserless needs to restart the session
|
||||||
|
// (See comment at the top of changedetectionio/blueprint/browser_steps/__init__.py )
|
||||||
|
setInterval(() => {
|
||||||
|
if (browserless_seconds_remaining >= 1) {
|
||||||
|
document.getElementById('browserless-seconds-remaining').innerText = browserless_seconds_remaining + " seconds remaining in session";
|
||||||
|
browserless_seconds_remaining -= 1;
|
||||||
|
}
|
||||||
|
}, "1000")
|
||||||
|
|
||||||
|
|
||||||
|
if (window.location.hash == '#browser-steps') {
|
||||||
|
start();
|
||||||
|
}
|
||||||
|
|
||||||
|
window.addEventListener('hashchange', function () {
|
||||||
|
if (window.location.hash == '#browser-steps') {
|
||||||
|
start();
|
||||||
|
}
|
||||||
|
// For when the page loads
|
||||||
|
if (!window.location.hash || window.location.hash != '#browser-steps') {
|
||||||
|
$("img#browsersteps-img").attr('src', '');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function set_scale() {
|
||||||
|
|
||||||
|
// some things to check if the scaling doesnt work
|
||||||
|
// - that the widths/sizes really are about the actual screen size cat elements.json |grep -o width......|sort|uniq
|
||||||
|
selector_image = $("img#browsersteps-img")[0];
|
||||||
|
selector_image_rect = selector_image.getBoundingClientRect();
|
||||||
|
|
||||||
|
// make the canvas and input steps the same size as the image
|
||||||
|
$('#browsersteps-selector-canvas').attr('height', selector_image_rect.height).attr('width', selector_image_rect.width);
|
||||||
|
//$('#browsersteps-selector-wrapper').attr('width', selector_image_rect.width);
|
||||||
|
$('#browser-steps-ui').attr('width', selector_image_rect.width);
|
||||||
|
|
||||||
|
x_scale = selector_image_rect.width / xpath_data['browser_width'];
|
||||||
|
y_scale = selector_image_rect.height / selector_image.naturalHeight;
|
||||||
|
ctx.strokeStyle = 'rgba(255,0,0, 0.9)';
|
||||||
|
ctx.fillStyle = 'rgba(255,0,0, 0.1)';
|
||||||
|
ctx.lineWidth = 3;
|
||||||
|
console.log("scaling set x: " + x_scale + " by y:" + y_scale);
|
||||||
|
}
|
||||||
|
|
||||||
|
// bootstrap it, this will trigger everything else
|
||||||
|
$('#browsersteps-img').bind('load', function () {
|
||||||
|
$('body').addClass('full-width');
|
||||||
|
console.log("Loaded background...");
|
||||||
|
|
||||||
|
document.getElementById("browsersteps-selector-canvas");
|
||||||
|
c = document.getElementById("browsersteps-selector-canvas");
|
||||||
|
// redline highlight context
|
||||||
|
ctx = c.getContext("2d");
|
||||||
|
// @todo is click better?
|
||||||
|
$('#browsersteps-selector-canvas').off("mousemove mousedown click");
|
||||||
|
// Undo disable_browsersteps_ui
|
||||||
|
$("#browser_steps select,input").removeAttr('disabled').css('opacity', '1.0');
|
||||||
|
$("#browser-steps-ui").css('opacity', '1.0');
|
||||||
|
|
||||||
|
// init
|
||||||
|
set_scale();
|
||||||
|
|
||||||
|
// @todo click ? some better library?
|
||||||
|
$('#browsersteps-selector-canvas').bind('click', function (e) {
|
||||||
|
// https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent
|
||||||
|
e.preventDefault()
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#browsersteps-selector-canvas').bind('mousedown', function (e) {
|
||||||
|
// https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent
|
||||||
|
e.preventDefault()
|
||||||
|
console.log(e);
|
||||||
|
console.log("current xpath in index is "+current_selected_i);
|
||||||
|
last_click_xy = {'x': parseInt((1 / x_scale) * e.offsetX), 'y': parseInt((1 / y_scale) * e.offsetY)}
|
||||||
|
process_selected(current_selected_i);
|
||||||
|
current_selected_i = false;
|
||||||
|
|
||||||
|
// if process selected returned false, then best we can do is offer a x,y click :(
|
||||||
|
if (!found_something) {
|
||||||
|
var first_available = $("ul#browser_steps li.empty").first();
|
||||||
|
$('select', first_available).val('Click X,Y').change();
|
||||||
|
$('input[type=text]', first_available).first().val(last_click_xy['x'] + ',' + last_click_xy['y']);
|
||||||
|
draw_circle_on_canvas(e.offsetX, e.offsetY);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#browsersteps-selector-canvas').bind('mousemove', function (e) {
|
||||||
|
// checkbox if find elements is enabled
|
||||||
|
ctx.clearRect(0, 0, c.width, c.height);
|
||||||
|
ctx.fillStyle = 'rgba(255,0,0, 0.1)';
|
||||||
|
ctx.strokeStyle = 'rgba(255,0,0, 0.9)';
|
||||||
|
|
||||||
|
// Add in offset
|
||||||
|
if ((typeof e.offsetX === "undefined" || typeof e.offsetY === "undefined") || (e.offsetX === 0 && e.offsetY === 0)) {
|
||||||
|
var targetOffset = $(e.target).offset();
|
||||||
|
e.offsetX = e.pageX - targetOffset.left;
|
||||||
|
e.offsetY = e.pageY - targetOffset.top;
|
||||||
|
}
|
||||||
|
current_selected_i = false;
|
||||||
|
// Reverse order - the most specific one should be deeper/"laster"
|
||||||
|
// Basically, find the most 'deepest'
|
||||||
|
//$('#browsersteps-selector-canvas').css('cursor', 'pointer');
|
||||||
|
for (var i = xpath_data['size_pos'].length; i !== 0; i--) {
|
||||||
|
// draw all of them? let them choose somehow?
|
||||||
|
var sel = xpath_data['size_pos'][i - 1];
|
||||||
|
// If we are in a bounding-box
|
||||||
|
if (e.offsetY > sel.top * y_scale && e.offsetY < sel.top * y_scale + sel.height * y_scale
|
||||||
|
&&
|
||||||
|
e.offsetX > sel.left * y_scale && e.offsetX < sel.left * y_scale + sel.width * y_scale
|
||||||
|
|
||||||
|
) {
|
||||||
|
// Only highlight these interesting types
|
||||||
|
if (1) {
|
||||||
|
ctx.strokeRect(sel.left * x_scale, sel.top * y_scale, sel.width * x_scale, sel.height * y_scale);
|
||||||
|
ctx.fillRect(sel.left * x_scale, sel.top * y_scale, sel.width * x_scale, sel.height * y_scale);
|
||||||
|
current_selected_i = i - 1;
|
||||||
|
break;
|
||||||
|
|
||||||
|
// find the smallest one at this x,y
|
||||||
|
// does it mean sort the xpath list by size (w*h) i think so!
|
||||||
|
} else {
|
||||||
|
|
||||||
|
if ( include_text_elements[0].checked === true) {
|
||||||
|
// blue one with background instead?
|
||||||
|
ctx.fillStyle = 'rgba(0,0,255, 0.1)';
|
||||||
|
ctx.strokeStyle = 'rgba(0,0,200, 0.7)';
|
||||||
|
$('#browsersteps-selector-canvas').css('cursor', 'grab');
|
||||||
|
ctx.strokeRect(sel.left * x_scale, sel.top * y_scale, sel.width * x_scale, sel.height * y_scale);
|
||||||
|
ctx.fillRect(sel.left * x_scale, sel.top * y_scale, sel.width * x_scale, sel.height * y_scale);
|
||||||
|
current_selected_i = i - 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}.debounce(10));
|
||||||
|
});
|
||||||
|
|
||||||
|
// $("#browser-steps-fieldlist").bind('mouseover', function(e) {
|
||||||
|
// console.log(e.xpath_data_index);
|
||||||
|
// });
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// callback for clicking on an xpath on the canvas
|
||||||
|
function process_selected(xpath_data_index) {
|
||||||
|
found_something = false;
|
||||||
|
var first_available = $("ul#browser_steps li.empty").first();
|
||||||
|
|
||||||
|
|
||||||
|
if (xpath_data_index !== false) {
|
||||||
|
// Nothing focused, so fill in a new one
|
||||||
|
// if inpt type button or <button>
|
||||||
|
// from the top, find the next not used one and use it
|
||||||
|
var x = xpath_data['size_pos'][xpath_data_index];
|
||||||
|
console.log(x);
|
||||||
|
if (x && first_available.length) {
|
||||||
|
// @todo will it let you click shit that has a layer ontop? probably not.
|
||||||
|
if (x['tagtype'] === 'text' || x['tagtype'] === 'email' || x['tagName'] === 'textarea' || x['tagtype'] === 'password' || x['tagtype'] === 'search' ) {
|
||||||
|
$('select', first_available).val('Enter text in field').change();
|
||||||
|
$('input[type=text]', first_available).first().val(x['xpath']);
|
||||||
|
$('input[placeholder="Value"]', first_available).addClass('ok').click().focus();
|
||||||
|
found_something = true;
|
||||||
|
} else {
|
||||||
|
// Assume it's just for clicking on
|
||||||
|
// what are we clicking on?
|
||||||
|
if (x['tagName'].startsWith('h')|| x['tagName'] === 'a' || x['tagName'] === 'button' || x['tagtype'] === 'submit'|| x['tagtype'] === 'checkbox'|| x['tagtype'] === 'radio'|| x['tagtype'] === 'li') {
|
||||||
|
$('select', first_available).val('Click element').change();
|
||||||
|
$('input[type=text]', first_available).first().val(x['xpath']);
|
||||||
|
found_something = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
first_available.xpath_data_index=xpath_data_index;
|
||||||
|
|
||||||
|
if (!found_something) {
|
||||||
|
if ( include_text_elements[0].checked === true) {
|
||||||
|
// Suggest that we use as filter?
|
||||||
|
// @todo filters should always be in the last steps, nothing non-filter after it
|
||||||
|
found_something = true;
|
||||||
|
ctx.strokeStyle = 'rgba(0,0,255, 0.9)';
|
||||||
|
ctx.fillStyle = 'rgba(0,0,255, 0.1)';
|
||||||
|
$('select', first_available).val('Extract text and use as filter').change();
|
||||||
|
$('input[type=text]', first_available).first().val(x['xpath']);
|
||||||
|
include_text_elements[0].checked = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function draw_circle_on_canvas(x, y) {
|
||||||
|
ctx.beginPath();
|
||||||
|
ctx.arc(x, y, 8, 0, 2 * Math.PI, false);
|
||||||
|
ctx.fillStyle = 'rgba(255,0,0, 0.6)';
|
||||||
|
ctx.fill();
|
||||||
|
}
|
||||||
|
|
||||||
|
function start() {
|
||||||
|
console.log("Starting browser-steps UI");
|
||||||
|
browsersteps_session_id=Date.now();
|
||||||
|
// @todo This setting of the first one should be done at the datalayer but wtforms doesnt wanna play nice
|
||||||
|
$('#browser_steps >li:first-child').removeClass('empty');
|
||||||
|
$('#browser_steps >li:first-child select').val('Goto site').attr('disabled', 'disabled');
|
||||||
|
$('#browser-steps-ui .loader').show();
|
||||||
|
$('.clear,.remove', $('#browser_steps >li:first-child')).hide();
|
||||||
|
$.ajax({
|
||||||
|
type: "GET",
|
||||||
|
url: browser_steps_sync_url+"&browsersteps_session_id="+browsersteps_session_id,
|
||||||
|
statusCode: {
|
||||||
|
400: function () {
|
||||||
|
// More than likely the CSRF token was lost when the server restarted
|
||||||
|
alert("There was a problem processing the request, please reload the page.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).done(function (data) {
|
||||||
|
xpath_data = data.xpath_data;
|
||||||
|
$('#browsersteps-img').attr('src', data.screenshot);
|
||||||
|
// This should trigger 'Goto site'
|
||||||
|
$('#browser_steps >li:first-child .apply').click();
|
||||||
|
browserless_seconds_remaining = data.browser_time_remaining;
|
||||||
|
}).fail(function (data) {
|
||||||
|
console.log(data);
|
||||||
|
alert('There was an error communicating with the server.');
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function disable_browsersteps_ui() {
|
||||||
|
$("#browser_steps select,input").attr('disabled', 'disabled').css('opacity', '0.5');
|
||||||
|
$("#browser-steps-ui").css('opacity', '0.3');
|
||||||
|
$('#browsersteps-selector-canvas').off("mousemove mousedown click");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////// STEPS UI ////////////////////
|
||||||
|
$('ul#browser_steps [type="text"]').keydown(function (e) {
|
||||||
|
if (e.keyCode === 13) {
|
||||||
|
// hitting [enter] in a browser-step input should trigger the 'Apply'
|
||||||
|
e.preventDefault();
|
||||||
|
$(".apply", $(this).closest('li')).click();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Look up which step was selected, and enable or disable the related extra fields
|
||||||
|
// So that people using it dont' get confused
|
||||||
|
$('ul#browser_steps select').on("change", function () {
|
||||||
|
var config = browser_steps_config[$(this).val()].split(' ');
|
||||||
|
var elem_selector = $('tr:nth-child(2) input', $(this).closest('tbody'));
|
||||||
|
var elem_value = $('tr:nth-child(3) input', $(this).closest('tbody'));
|
||||||
|
|
||||||
|
if (config[0] == 0) {
|
||||||
|
$(elem_selector).fadeOut();
|
||||||
|
} else {
|
||||||
|
$(elem_selector).fadeIn();
|
||||||
|
}
|
||||||
|
if (config[1] == 0) {
|
||||||
|
$(elem_value).fadeOut();
|
||||||
|
} else {
|
||||||
|
$(elem_value).fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($(this).val() === 'Click X,Y' && last_click_xy['x'] > 0 && $(elem_value).val().length === 0) {
|
||||||
|
// @todo handle scale
|
||||||
|
$(elem_value).val(last_click_xy['x'] + ',' + last_click_xy['y']);
|
||||||
|
}
|
||||||
|
}).change();
|
||||||
|
|
||||||
|
function set_greyed_state() {
|
||||||
|
$('ul#browser_steps select').not('option:selected[value="Choose one"]').closest('li').removeClass('empty');
|
||||||
|
$('ul#browser_steps select option:selected[value="Choose one"]').closest('li').addClass('empty');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add the extra buttons to the steps
|
||||||
|
$('ul#browser_steps li').each(function (i) {
|
||||||
|
$(this).append('<div class="control">' +
|
||||||
|
'<a data-step-index=' + i + ' class="pure-button button-secondary button-green button-xsmall apply" >Apply</a> ' +
|
||||||
|
'<a data-step-index=' + i + ' class="pure-button button-secondary button-xsmall clear" >Clear</a> ' +
|
||||||
|
'<a data-step-index=' + i + ' class="pure-button button-secondary button-red button-xsmall remove" >Remove</a>' +
|
||||||
|
'</div>')
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
$('ul#browser_steps li .control .clear').click(function (element) {
|
||||||
|
$("select", $(this).closest('li')).val("Choose one").change();
|
||||||
|
$(":text", $(this).closest('li')).val('');
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$('ul#browser_steps li .control .remove').click(function (element) {
|
||||||
|
// so you wanna remove the 2nd (3rd spot 0,1,2,...)
|
||||||
|
var p = $("#browser_steps li").index($(this).closest('li'));
|
||||||
|
|
||||||
|
var elem_to_remove = $("#browser_steps li")[p];
|
||||||
|
$('.clear', elem_to_remove).click();
|
||||||
|
$("#browser_steps li").slice(p, 10).each(function (index) {
|
||||||
|
// get the next one's value from where we clicked
|
||||||
|
var next = $("#browser_steps li")[p + index + 1];
|
||||||
|
if (next) {
|
||||||
|
// and set THIS ones value from the next one
|
||||||
|
var n = $('input', next);
|
||||||
|
$("select", $(this)).val($('select', next).val());
|
||||||
|
$('input', this)[0].value = $(n)[0].value;
|
||||||
|
$('input', this)[1].value = $(n)[1].value;
|
||||||
|
// Triggers reconfiguring the field based on the system config
|
||||||
|
$("select", $(this)).change();
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
// Reset their hidden/empty states
|
||||||
|
set_greyed_state();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('ul#browser_steps li .control .apply').click(function (event) {
|
||||||
|
// sequential requests @todo refactor
|
||||||
|
if(apply_buttons_disabled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var current_data = $(event.currentTarget).closest('li');
|
||||||
|
$('#browser-steps-ui .loader').fadeIn();
|
||||||
|
apply_buttons_disabled=true;
|
||||||
|
$('ul#browser_steps li .control .apply').css('opacity',0.5);
|
||||||
|
$("#browsersteps-img").css('opacity',0.65);
|
||||||
|
|
||||||
|
var is_last_step = 0;
|
||||||
|
var step_n = $(event.currentTarget).data('step-index');
|
||||||
|
|
||||||
|
// On the last step, we should also be getting data ready for the visual selector
|
||||||
|
$('ul#browser_steps li select').each(function (i) {
|
||||||
|
if ($(this).val() !== 'Choose one') {
|
||||||
|
is_last_step += 1;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (is_last_step == (step_n+1)) {
|
||||||
|
is_last_step = true;
|
||||||
|
} else {
|
||||||
|
is_last_step = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// POST the currently clicked step form widget back and await response, redraw
|
||||||
|
$.ajax({
|
||||||
|
method: "POST",
|
||||||
|
url: browser_steps_sync_url+"&browsersteps_session_id="+browsersteps_session_id,
|
||||||
|
data: {
|
||||||
|
'operation': $("select[id$='operation']", current_data).first().val(),
|
||||||
|
'selector': $("input[id$='selector']", current_data).first().val(),
|
||||||
|
'optional_value': $("input[id$='optional_value']", current_data).first().val(),
|
||||||
|
'step_n': step_n,
|
||||||
|
'is_last_step': is_last_step
|
||||||
|
},
|
||||||
|
statusCode: {
|
||||||
|
400: function () {
|
||||||
|
// More than likely the CSRF token was lost when the server restarted
|
||||||
|
alert("There was a problem processing the request, please reload the page.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).done(function (data) {
|
||||||
|
// it should return the new state (selectors available and screenshot)
|
||||||
|
xpath_data = data.xpath_data;
|
||||||
|
$('#browsersteps-img').attr('src', data.screenshot);
|
||||||
|
$('#browser-steps-ui .loader').fadeOut();
|
||||||
|
apply_buttons_disabled=false;
|
||||||
|
$("#browsersteps-img").css('opacity',1);
|
||||||
|
$('ul#browser_steps li .control .apply').css('opacity',1);
|
||||||
|
browserless_seconds_remaining = data.browser_time_remaining;
|
||||||
|
}).fail(function (data) {
|
||||||
|
console.log(data);
|
||||||
|
if (data.responseText.includes("Browser session expired")) {
|
||||||
|
disable_browsersteps_ui();
|
||||||
|
}
|
||||||
|
apply_buttons_disabled=false;
|
||||||
|
$('ul#browser_steps li .control .apply').css('opacity',1);
|
||||||
|
$("#browsersteps-img").css('opacity',1);
|
||||||
|
//$('#browsersteps-selector-wrapper .loader').fadeOut(2500);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$("ul#browser_steps select").change(function () {
|
||||||
|
set_greyed_state();
|
||||||
|
}).change();
|
||||||
|
|
||||||
|
});
|
@ -0,0 +1,34 @@
|
|||||||
|
$(document).ready(function(){
|
||||||
|
checkUserVal();
|
||||||
|
$('#fetch_backend input').on('change', checkUserVal);
|
||||||
|
});
|
||||||
|
|
||||||
|
var checkUserVal = function(){
|
||||||
|
if($('#fetch_backend input:checked').val()=='html_requests') {
|
||||||
|
$('#request-override').show();
|
||||||
|
$('#webdriver-stepper').hide();
|
||||||
|
} else {
|
||||||
|
$('#request-override').hide();
|
||||||
|
$('#webdriver-stepper').show();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
$('a.row-options').on('click', function(){
|
||||||
|
var row=$(this.closest('tr'));
|
||||||
|
switch($(this).data("action")) {
|
||||||
|
case 'remove':
|
||||||
|
$(row).remove();
|
||||||
|
break;
|
||||||
|
case 'add':
|
||||||
|
var new_row=$(row).clone(true).insertAfter($(row));
|
||||||
|
$('input', new_new).val("");
|
||||||
|
break;
|
||||||
|
case 'add':
|
||||||
|
var new_row=$(row).clone(true).insertAfter($(row));
|
||||||
|
$('input', new_new).val("");
|
||||||
|
break;
|
||||||
|
case 'resend-step':
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,81 @@
|
|||||||
|
|
||||||
|
#browser_steps {
|
||||||
|
/* convert rows to horizontal cells */
|
||||||
|
th {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
list-style: decimal;
|
||||||
|
padding: 5px;
|
||||||
|
.control {
|
||||||
|
padding-left: 5px;
|
||||||
|
padding-right: 5px;
|
||||||
|
a {
|
||||||
|
font-size: 70%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.empty {
|
||||||
|
padding: 0px;
|
||||||
|
opacity: 0.35;
|
||||||
|
.control {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&:hover {
|
||||||
|
background: #eee;
|
||||||
|
}
|
||||||
|
> label {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#browser-steps-fieldlist {
|
||||||
|
height: 100%;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
#browser-steps .flex-wrapper {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: row;
|
||||||
|
height: 600px; /*@todo make this dynamic */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* this is duplicate :( */
|
||||||
|
#browsersteps-selector-wrapper {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
overflow-y: scroll;
|
||||||
|
position: relative;
|
||||||
|
//width: 100%;
|
||||||
|
> img {
|
||||||
|
position: absolute;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
> canvas {
|
||||||
|
position: relative;
|
||||||
|
max-width: 100%;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.loader {
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
margin-left: -40px;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* nice tall skinny one */
|
||||||
|
.spinner, .spinner:after {
|
||||||
|
width: 80px;
|
||||||
|
height: 80px;
|
||||||
|
font-size: 3px;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,44 @@
|
|||||||
|
|
||||||
|
/* spinner */
|
||||||
|
.spinner,
|
||||||
|
.spinner:after {
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
}
|
||||||
|
.spinner {
|
||||||
|
margin: 0px auto;
|
||||||
|
font-size: 3px;
|
||||||
|
vertical-align: middle;
|
||||||
|
display: inline-block;
|
||||||
|
text-indent: -9999em;
|
||||||
|
border-top: 1.1em solid rgba(38,104,237, 0.2);
|
||||||
|
border-right: 1.1em solid rgba(38,104,237, 0.2);
|
||||||
|
border-bottom: 1.1em solid rgba(38,104,237, 0.2);
|
||||||
|
border-left: 1.1em solid #2668ed;
|
||||||
|
-webkit-transform: translateZ(0);
|
||||||
|
-ms-transform: translateZ(0);
|
||||||
|
transform: translateZ(0);
|
||||||
|
-webkit-animation: load8 1.1s infinite linear;
|
||||||
|
animation: load8 1.1s infinite linear;
|
||||||
|
}
|
||||||
|
@-webkit-keyframes load8 {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(360deg);
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes load8 {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotate(360deg);
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 301 KiB |
Loading…
Reference in new issue