본문 바로가기

Python_Beginer/Note

Python 분석 방법

반응형

- 지메일 로그인 사이트 ID 입력 분석

<input type="email" class="whsOnd zHQkBf" jsname="YPqjbf" autocomplete="username" spellcheck="false" tabindex="0" aria-label="Email or phone" name="identifier" autocapitalize="none" id="identifierId" dir="ltr" data-initial-dir="ltr" data-initial-value="">

# next 버튼 Sample 1

//*[@id="identifierNext"]/div[2]

# next 버튼 Sample 2

//*[@id="identifierNext"]/content/span

# next 버튼 Sample 3

//*[@id="identifierNext"]/content


- 지메일 로그인 사이트 Password 입력 분석

<input type="password" class="whsOnd zHQkBf" jsname="YPqjbf" autocomplete="current-password" spellcheck="false" tabindex="0" aria-label="비밀번호 입력" name="password" autocapitalize="off" dir="ltr" data-initial-dir="ltr" data-initial-value="">

# next 버튼 Sample1

//*[@id="passwordNext"]/content/span


- 다음 메일 웹 사이트 분석

# id 입력 HTML

<input type="email" id="id" name="id" value="" class="tf_g" style="ime-mode:disabled;">

#password 입력 HTML

<input type="password" id="inputPwd" name="pw" class="tf_g" maxlength="32" autocomplete="off" style="ime-mode:disabled;">


- 로그인 버튼

//*[@id="loginBtn"]


- 네이버 일회용 비밀번호 입력

<input type="text" id="disposable_num" name="key" maxlength="20" placeholder="일회용 로그인 번호" class="int" autocomplete="off">


- 네이버 일회용 로그인 버튼 클릭

//*[@id="frmNIDLogin"]/fieldset/span/input


반응형

'Python_Beginer > Note' 카테고리의 다른 글

Python 수강 노트 5  (0) 2019.03.03
Python 분석 방법 2  (0) 2019.03.03
Python 수강 노트 4  (0) 2019.02.24
Python 수강 노트 3  (0) 2019.02.23
Python 수강 노트 2  (0) 2019.02.23