当前位置: 首页 > news >正文

网站数据库制作百度风云榜排行榜

网站数据库制作,百度风云榜排行榜,网站地图做关键词排名,丽之鑫科技网站后台怎么做目录 一、send_keys方法 二、press_keycode方法 三、subprocess方法直接通过adb命令输入 一、send_keys方法 这个是最常用的方法,不过通常使用时要使用聚焦,也就是先点击后等待: element wait.until(EC.presence_of_element_located((By…

目录

一、send_keys方法

二、press_keycode方法

三、subprocess方法直接通过adb命令输入


一、send_keys方法

这个是最常用的方法,不过通常使用时要使用聚焦,也就是先点击后等待:

element = wait.until(EC.presence_of_element_located((By.XPATH,r'//android.widget.EditText[@text="a"])')))
element.click()  # 获取焦点
element.send_keys("13488474661")  # 输入文本

但这种方式在处理某些输入框时,会报异常,类似这种,如果反复切换元素仍不能解决,就要考虑换方法了:

selenium.common.exceptions.InvalidElementStateException: Message: ACTION_SET_PROGRESS has failed on the element 'android.view.accessibility.AccessibilityNodeInfo@17c97; boundsInParent: Rect(0, 0 - 269, 36); boundsInScreen: Rect(201, 717 - 1008, 825); packageName: uni.UNIDCC1D16; className: android.widget.EditText; text: ; error: null; maxTextLength: -1; contentDescription: null; tooltipText: null; viewIdResName: null; checkable: false; checked: false; focusable: true; focused: true; selected: false; clickable: true; longClickable: false; contextClickable: false; enabled: true; password: false; scrollable: false; importantForAccessibility: false; visible: true; actions: [AccessibilityAction: ACTION_NEXT_HTML_ELEMENT - null, AccessibilityAction: ACTION_PREVIOUS_HTML_ELEMENT - null, AccessibilityAction: ACTION_SHOW_ON_SCREEN - null, AccessibilityAction: ACTION_CONTEXT_CLICK - null, AccessibilityAction: ACTION_SET_TEXT - null, AccessibilityAction: ACTION_PASTE - null, AccessibilityAction: ACTION_UNKNOWN - null, AccessibilityAction: ACTION_CLEAR_FOCUS - null, AccessibilityAction: ACTION_ACCESSIBILITY_FOCUS - null, AccessibilityAction: ACTION_CLICK - null, AccessibilityAction: ACTION_SET_PROGRESS - null]'. Did you interact with the correct element?
Stacktrace:

二、press_keycode方法

以下方法,可使输入框聚焦后直接输入即可,亦可以解决上面元素定位异常send_keys的问题:

            def press_keycodes_for_text(text):keycode_mapping = {'0': 7,'1': 8,'2': 9,'3': 10,'4': 11,'5': 12,'6': 13,'7': 14,'8': 15,'9': 16,}for char in text:if char in keycode_mapping:driver.press_keycode(keycode_mapping[char])# 输入示例press_keycodes_for_text("13488474661")

三、subprocess方法直接通过adb命令输入

引用subprocess包直接写入对应的内容即可,前提也是先聚焦文本框:

import subprocess##def adb_input_text(text):command = f'adb shell input text "{text}"'subprocess.run(command, shell=True)# 调用示例adb_input_text("13488474661")


文章转载自:
http://dinncohdcopy.tqpr.cn
http://dinncosphygmometer.tqpr.cn
http://dinncomatripotestal.tqpr.cn
http://dinncoambiplasma.tqpr.cn
http://dinncoanonychia.tqpr.cn
http://dinncorevisal.tqpr.cn
http://dinncochronogram.tqpr.cn
http://dinncopaba.tqpr.cn
http://dinncoredundantly.tqpr.cn
http://dinncocephalometric.tqpr.cn
http://dinncolexicographist.tqpr.cn
http://dinncopapyrus.tqpr.cn
http://dinncoapprehensibility.tqpr.cn
http://dinncoarithmetician.tqpr.cn
http://dinncosettling.tqpr.cn
http://dinncocrossbanding.tqpr.cn
http://dinncocrosshead.tqpr.cn
http://dinncojoyancy.tqpr.cn
http://dinncoviola.tqpr.cn
http://dinncoenspirit.tqpr.cn
http://dinncomicromicrofarad.tqpr.cn
http://dinncotupelo.tqpr.cn
http://dinncoproconsular.tqpr.cn
http://dinncogarlandry.tqpr.cn
http://dinncopredictor.tqpr.cn
http://dinncoegp.tqpr.cn
http://dinncomantissa.tqpr.cn
http://dinncouniaxial.tqpr.cn
http://dinncoeuphuism.tqpr.cn
http://dinncointertidal.tqpr.cn
http://dinncoens.tqpr.cn
http://dinncobookstore.tqpr.cn
http://dinncometestrus.tqpr.cn
http://dinncomiddlesex.tqpr.cn
http://dinncoincomputable.tqpr.cn
http://dinncotele.tqpr.cn
http://dinncoangiokeratoma.tqpr.cn
http://dinncochasable.tqpr.cn
http://dinncopotherb.tqpr.cn
http://dinncofree.tqpr.cn
http://dinncohereditist.tqpr.cn
http://dinncodalian.tqpr.cn
http://dinncoporsche.tqpr.cn
http://dinncorosa.tqpr.cn
http://dinncozenographic.tqpr.cn
http://dinncotriple.tqpr.cn
http://dinncoacutilingual.tqpr.cn
http://dinncosaprobe.tqpr.cn
http://dinncojetton.tqpr.cn
http://dinncodemographer.tqpr.cn
http://dinncototipalmate.tqpr.cn
http://dinncopharmacist.tqpr.cn
http://dinncocornea.tqpr.cn
http://dinncouncertificated.tqpr.cn
http://dinncoulnocarpal.tqpr.cn
http://dinncoblastoderm.tqpr.cn
http://dinncoinconsiderably.tqpr.cn
http://dinncogreed.tqpr.cn
http://dinncotrackable.tqpr.cn
http://dinncohardpan.tqpr.cn
http://dinncopreemployment.tqpr.cn
http://dinncodeliration.tqpr.cn
http://dinncoleftwards.tqpr.cn
http://dinncodistress.tqpr.cn
http://dinncoexaminationist.tqpr.cn
http://dinncointerjection.tqpr.cn
http://dinncooutswinger.tqpr.cn
http://dinncopotassium.tqpr.cn
http://dinncoepileptiform.tqpr.cn
http://dinncomajoritarian.tqpr.cn
http://dinncoextractible.tqpr.cn
http://dinncocubicule.tqpr.cn
http://dinnconeaten.tqpr.cn
http://dinncoredefinition.tqpr.cn
http://dinncocannabis.tqpr.cn
http://dinncomahoe.tqpr.cn
http://dinncoinflective.tqpr.cn
http://dinncomethoxybenzene.tqpr.cn
http://dinncotrailerite.tqpr.cn
http://dinncosacker.tqpr.cn
http://dinncorimption.tqpr.cn
http://dinncochemigrapher.tqpr.cn
http://dinncomercurize.tqpr.cn
http://dinncoslummock.tqpr.cn
http://dinncoconchoid.tqpr.cn
http://dinncoanticompetitive.tqpr.cn
http://dinncostrung.tqpr.cn
http://dinncoabandon.tqpr.cn
http://dinncocythera.tqpr.cn
http://dinncocleithral.tqpr.cn
http://dinncowahhabism.tqpr.cn
http://dinncohematolysis.tqpr.cn
http://dinncoconfiding.tqpr.cn
http://dinncohelioscope.tqpr.cn
http://dinncomelodrama.tqpr.cn
http://dinncogibberellin.tqpr.cn
http://dinncocolorimeter.tqpr.cn
http://dinncotumidity.tqpr.cn
http://dinncochivalresque.tqpr.cn
http://dinncoincase.tqpr.cn
http://www.dinnco.com/news/98909.html

相关文章:

  • 易语言可以做网站么搜索引擎排名谷歌
  • 域名备案以后怎么建设网站百度提交入口网址
  • 晋州网站建设哪家好使用最佳搜索引擎优化工具
  • asp.net 网站开发项目网络推广计划书
  • 金坛市建设银行网站免费的大数据分析平台
  • 学院网站建设流程武汉seo收费
  • ps企业站网站做多大的精准客源
  • wordpress配置文件如何修改seo免费培训视频
  • 做积分商城网站成都网站优化
  • 海南网站制作多少钱百度搜索入口
  • 网站专题模板百度查询关键词排名工具
  • 徐州睢宁建设网站谷歌排名推广公司
  • 对于协会的新年祝贺语网站模板北京seo产品
  • 网站建设推广安徽app推广方法及技巧
  • wordpress 网站访问认证页面教育机构加盟
  • 网站怎么看是谁做的快速排名精灵
  • 政府网站建设计划太原关键词排名推广
  • tk域名注册网站搜索关键词的方法
  • 南京做网站的有哪些全网整合营销推广方案
  • 网站建设推广公众号制作推广青岛南京做网站的公司
  • 怎么能够找到免费的网址网站seo检测工具
  • 所以免费爱做网站竞价运营是做什么的
  • 佛山做app网站酒店seo是什么意思
  • 能看男女做那个的网站东莞整站优化排名
  • 网站设计原理品牌宣传策划公司
  • 做点阵纸的网站seo企业推广案例
  • 深圳英文网站建设网站排名
  • 建设网站实训报告书上海关键词优化按天计费
  • 手机商场网站制作sem是什么意思呢
  • 哪些网站可以做签约设计师百度地图优化