I need to move some layers in my layout and I am not seeing how to do this in Pro through python. Am I not seeing it or is there no way to do this in Pro?
ArcMap
df = arcpy.mapping.ListDataFrames(mxd, "Layers")[0]
for lyr in arcpy.mapping.ListLayers(mxd, "" ,df):
if lyr.name == "Sections":
moveLayer = lyr
if lyr.name == "TaxParcels":
refLayer = lyr
arcpy.mapping.MoveLayer(df,refLayer,moveLayer,"BEFORE")