mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
19 lines
383 B
Python
19 lines
383 B
Python
# -*- coding:utf-8 -*-
|
|
"""
|
|
@Author : g1879
|
|
@Contact : g1879@qq.com
|
|
@Copyright: (c) 2024 by g1879, Inc. All Rights Reserved.
|
|
@License : BSD 3-Clause.
|
|
"""
|
|
|
|
|
|
class By:
|
|
ID = 'id'
|
|
XPATH = 'xpath'
|
|
LINK_TEXT = 'link text'
|
|
PARTIAL_LINK_TEXT = 'partial link text'
|
|
NAME = 'name'
|
|
TAG_NAME = 'tag name'
|
|
CLASS_NAME = 'class name'
|
|
CSS_SELECTOR = 'css selector'
|