image

載具發票自動對獎,綁定帳戶獎金自動匯入非常方便又環保 
沒有實體發票錢包也乾淨俐落起來~

文章標籤

MonkeyJ 發表在 痞客邦 留言(0) 人氣()

NBA TOP SHOT 官網 => 連結

 

文章標籤

MonkeyJ 發表在 痞客邦 留言(0) 人氣()

image

場地很大動線寬敞很適合聚會、聯誼  
剛好旁邊桌就坐了群20多人的大學生在辦活動

文章標籤

MonkeyJ 發表在 痞客邦 留言(0) 人氣()

 
 
文章標籤

MonkeyJ 發表在 痞客邦 留言(1) 人氣()

image

先簡單介紹一下原理,也可直接看後段教如何註冊、開單~

台幣入金開始操作虛擬貨幣可以參考 =>  MAX 一個安全穩定手續費便宜的虛擬貨幣交易所... 

文章標籤

MonkeyJ 發表在 痞客邦 留言(0) 人氣()

image

https://developers.line.biz/zh-hant/

image

文章標籤

MonkeyJ 發表在 痞客邦 留言(0) 人氣()

image

隱藏 webdriver 痕跡後就可以囉:

opt.add_argument("--disable-blink-features=AutomationControlled")

 

文章標籤

MonkeyJ 發表在 痞客邦 留言(0) 人氣()

  • // : Select current node.
  • Tagname: Tagname of the particular node.
  • @: Select attribute.
  • Attribute: Attribute name of the node.
  • Value: Value of the attribute.
from selenium.webdriver.common.by import By

Xpath=//tagname[@attribute='value']
Xpath=//input[@name='uid']
Xpath=//input[@type='text']                             
Xpath=  //label[@id='message23']
Xpath=  //input[@value='RESET']
Xpath=//*[@class='barone']
Xpath=//a[@href='http://demo.guru99.com/']
Xpath= //img[@src='//guru99.com/images/home/java.png']
Xpath=//*[contains(@type,'sub')]
Xpath=//*[contains(@name,'btn')]
Xpath=//*[contains(@id,'message')]Xpath=//*[contains(text(),'here')]
Xpath=//*[contains(@href,'guru99.com')]
Xpath=//*[@type='submit' or @name='btnReset']
Xpath=//input[@type='submit' and @name='btnLogin']
Xpath=//label[starts-with(@id,'message')]
Xpath=//td[text()='UserID']
Xpath=//*[@type='text']//following::input
Xpath=//*[@type='text']//following::input[1]
Xpath=//*[text()='Enterprise Testing']//ancestor::div
Xpath=//*[text()='Enterprise Testing']//ancestor::div[1]
Xpath=//*[@id='java_technologies']//child::li
Xpath=//*[@id='java_technologies']//child::li[1]
Xpath=//*[@type='submit']//preceding::input
Xpath=//*[@type='submit']//preceding::input[1] 
xpath=//*[@type='submit']//following-sibling::input
Xpath=//*[@id='rt-feature']//parent::div
Xpath=//*[@id='rt-feature']//parent::div[1]
Xpath =//*[@type='password']//self::input
Xpath=//*[@id='rt-feature']//descendant::a
Xpath=//*[@id='rt-feature']//descendant::a[1]

 

 

  • Using class_name:

MonkeyJ 發表在 痞客邦 留言(0) 人氣()

這系列圖片一次100張要改名
一張一張手動改費時傷神
用python 3秒搞定
文章標籤

MonkeyJ 發表在 痞客邦 留言(0) 人氣()

fn+shift+delete  => insert
fn+delete


MonkeyJ 發表在 痞客邦 留言(0) 人氣()