Browse Source

rearrage readme

鄭中嘉 4 years ago
parent
commit
58a309e3e7
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Readme.md

+ 2 - 0
Readme.md

@@ -20,6 +20,7 @@ Design Pattern 一樣也是 PageObjects
  1. page_Name.py 上半部為 locator ,為該頁面欲操作網頁元素的操作依據(xpath, id, ... etc)
 
  2. A_B_C: 
+ 
      A 其屬性,如 button, option, tab, textbox, ... etc.
 
      B 其描述,如 圓形的按鈕(同時用id作為索取依據),整個會叫做 button_circle_id,circle就是描述
@@ -30,6 +31,7 @@ Design Pattern 一樣也是 PageObjects
  1. page_Name.py 下半部為 元素相關的 method (def), 大部分的操作會是,先確定元素出現(wait)再執行動作(click)
 
  2. A_B_C:
+
      A 其動作,如 click, wait, ... etc
 
      B 其描述,和 locator的描述一致,假設我們要點選 button_circle_id,那就會是 click_circle_button