Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/337.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
selenium python的md选项大部分时间失败_Python_Selenium_Dropdown - Fatal编程技术网

selenium python的md选项大部分时间失败

selenium python的md选项大部分时间失败,python,selenium,dropdown,Python,Selenium,Dropdown,嗨,我有以下代码 <md-option ng-repeat="sector in allSector | orderBy:'name'" ng-value="{"id":239,"name":"MU-BHND-JC32-0033","regionInventory":{"id":18,"regionName":"Mumbai","zone":{"id":4,"name":"WEST","longitude":73.1812,"country":{"id":3,"name":"INDIA",

嗨,我有以下代码

<md-option ng-repeat="sector in allSector | orderBy:'name'" ng-value="{"id":239,"name":"MU-BHND-JC32-0033","regionInventory":{"id":18,"regionName":"Mumbai","zone":{"id":4,"name":"WEST","longitude":73.1812,"country":{"id":3,"name":"INDIA","countryCode":"IND"},"latitude":22.3072},"stateCode":"MU","latitute":19.076,"longitude":72.8777},"latitute":19.29117616,"longitude":73.04375901,"coordinates":null,"centroid":null}" tabindex="0" class="ng-scope md-ink-ripple" role="option" aria-selected="false" id="select_option_982" aria-checked="true" value="[object Object]" style>
试着替换

subRegOpt = driver.find_element_by_xpath("//md-option[@ng-value='MU-BHND-JC32-0033']")

试着替换

subRegOpt = driver.find_element_by_xpath("//md-option[@ng-value='MU-BHND-JC32-0033']")

subRegOpt = driver.find_element_by_xpath("//md-option[contains(@ng-value, 'MU-BHND-JC32-0033')]")