This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
from selenium.webdriver.common.by import By | |
from bs4 import BeautifulSoup | |
import time | |
import csv | |
# Set up the WebDriver (make sure you have the appropriate driver installed, e.g., ChromeDriver) | |
driver = webdriver.Chrome() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { VueLoaderPlugin } = require("vue-loader"); | |
const path = require("path"); | |
const CopyPlugin = require("copy-webpack-plugin"); | |
module.exports = { | |
entry: "./src/main.js", | |
output: { | |
path: path.resolve(__dirname, "dist"), | |
filename: "main.js", | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "com.adobe.uxp.starter.vue", | |
"name": "UXP Vue Starter Plugin", | |
"version": "1.0.0", | |
"main": "index.html", | |
"manifestVersion": 4, | |
"host": { | |
"app": "PS", | |
"minVersion": "22.0.0" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="./main.js"></script> | |
</head> | |
<style> | |
div { | |
margin: auto; | |
} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { VueLoaderPlugin } = require("vue-loader"); | |
const path = require("path"); | |
const CopyPlugin = require("copy-webpack-plugin"); | |
module.exports = { | |
entry: "./src/main.js", | |
output: { | |
path: path.resolve(__dirname, "dist"), | |
filename: "main.js", | |
libraryTarget: "commonjs2", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "com.adobe.xd.starter.vue", | |
"name": "Vue Starter Plugin XD", | |
"version": "1.0.0", | |
"host": { | |
"app": "XD", | |
"minVersion": "36.0.0" | |
}, | |
"icons": [ | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "vue_starter_plugin", | |
"version": "1.0.0", | |
"main": "main.js", | |
"scripts": { | |
"watch": "nodemon -w src -e js,vue,css -w webpack.config.js -x yarn build", | |
"build": "webpack --mode development" | |
}, | |
"license": "none", | |
"private": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const styles = require("./styles.css"); | |
const Vue = require("vue").default; | |
const hello = require("./hello.vue").default | |
const { Text, Color } = require("scenegraph"); | |
let dialog; | |
function getDialog() { | |
if (dialog == null) { | |
document.body.innerHTML = `<dialog><div id="container"></div></dialog>` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<form style="width: 300px;"> | |
<h1> | |
{{ message }} | |
</h1> | |
<p> | |
Button has been clicked {{ count }} times. | |
</p> | |
<footer> | |
<button uxp-variant="cta" v-on:click="increment">Click me</button> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<form style="width: 300px;"> | |
<h1> | |
{{ message }} | |
</h1> | |
<p> | |
Button has been clicked {{ count }} times. | |
</p> | |
<footer> | |
<button uxp-variant="cta" v-on:click="increment">Click me</button> |
NewerOlder