问题标签 [walrus]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - Python 3.8 海象运算符,不指定多个变量
我正在研究硒包装器。我想检查网页上的元素是否可见。该函数获取selector
遵循模式的输入变量,"selector=value"
例如"id=content"
,但也可能是 this "link_text=Hello World"
。搜索函数将该字符串分成两部分以搜索实际元素并将其返回以用于错误处理。异常消息应同时说明选择器和值:
执行时虽然我收到以下错误:
我可以将分离过程移动到它自己的函数中,然后在异常和搜索函数中调用它,但我真的不想这样做,因为这意味着我要执行相同的代码两次。